Posts

Showing posts with the label AI

Spinnin’ and Steppin’: Traversing 3D Space with SpinStep

Image
The 3D Tree Traversal Problem Spatial data structures are everywhere , from game engines to robotics and scientific simulations. But while traditional trees like quadtrees, octrees, and BSP trees do well in axis-aligned or position-based contexts, they begin to falter when direction and orientation become the dominant parameters. How do you traverse a hierarchy not by going "left" or "down," but by rotating your point of view? Enter SpinStep SpinStep is intended to be a lightweight traversal framework based on quaternions — mathematical structures that represent 3D rotations. Rather than following nodes based on positional distance, SpinStep selects branches according to their angular proximity to the current orientation. This creates a new traversal metaphor: not stepping from point A to B, but rotating into the next part of the tree. At its core, SpinStep implements a directional depth-first iterator. It uses quaternions to determine whether a child node is reacha...

The Eternal November

 The concept of Eternal September originated from the internet's early days, when AOL started offering easy internet access to a massive number of people in September 1993. This influx of new users overwhelmed the existing online communities, changing the dynamics of the internet forever. What was once a niche, controlled space became open to everyone, leading to a period of chaotic growth and learning curves. Now, when we think about AI's public emergence, especially large language models like GPT (and its successors) becoming publicly accessible and widely used, we might say we're experiencing a similar phenomenon, except this time in the realm of artificial intelligence. The "Second Eternal September" of AI In a way, we are indeed living through something like a **second Eternal September**, but this time for AI: 1. Mass Adoption of AI Tools: With platforms like ChatGPT, DALL·E, and MidJourney becoming widely accessible to the public, AI is no longer confine...