top of page

Physics System

Polytree engine supports a foundational physics system that supports a Catmull rom Spline curve,  collision detection and raycasts for multiple 2D and 3D primitive geometry. These include:

  • AABB2

  • OBB2

  • Circle

  • Capsule

  • AABB3

  • OBB3

  • Sphere

  • ZCylinder

  • Plane3D

​

Below I will dissect these subsystems in detail.

Debug shapes and texts rendered 

Point inside polygon & nearest point to polygon

To establish the logic for collision detection, two key concepts need to be defined clearly:

  1. Checking if a Point is Inside a Polygon
    This involves determining whether a given point lies within a specified geometric shape in 2D or 3D space. Examples include:

    • IsPointInsideDisc2D()

    • IsPointInsideCapsule2D()

    • IsPointInsideAABB2D() (Axis-Aligned Bounding Box)

  2. Finding the Nearest Point on a Polygon to a Reference Point
    This entails calculating the closest point on a geometric shape to a given reference point in 2D or 3D space. Examples include:

    • GetNearestPointOnSphere3D()

    • GetNearestPointOnOBB2D() (Oriented Bounding Box)

    • GetNearestPointOnPlane3D()

As demonstrated in the video above, the orange points are calculated using the GetNearestPoint() functions, with the moving white dot serving as the reference point. Whenever the white dot moves inside a polygon, the polygon lights up, indicating that the IsPointInside() functions are working as intended.

IsPointInside() functions

GetNearestPoint() functions

Collision detection

Collision detection is done by creating logic to check if polygons overlap each other in 2D and/or 3D cartesian coordinate space. Below is the implementation for for overlapping logic between polygons:

DoPolygonsOverlap() functions

Corrective physics

Corrective physics is a subset of the physics system responsible for making adjustments to geometry in world space after positional or velocity changes have occurred.

Preventative physics refers to techniques used to avoid potential issues in a physics simulation before they occur, ensuring that the simulation remains stable, accurate, and performant. Unlike corrective physics, which resolves problems after they happen, preventative physics focuses on proactively enforcing rules or constraints to minimize the likelihood of errors, glitches, or unrealistic behaviors.

Polytree engine primarily supports corrective physics.

Corrective physic functions in Polytree engine

2D Pachinko Machine

2D pachinko machine

  • There are four object types:  dynamic (moving) “balls”, and three different flavors of static (non-moving) “bumpers”: Disc, Capsule, and OBB.

  • Physics should be resolved in this order each frame: 1. Apply gravity and move Balls, 2. Balls-vs-Balls, 3. Balls-vs-Bumpers, 4. Balls-vs-Walls.

  • Balls bounce off of each other with simple corrective physics (both a positional correction and a momentum exchange along the impact normal).

  • Balls bounce off of walls with simple corrective physics (both a positional correction and a velocity reversal along the impact [wall] normal).

  • Balls bounce off all three bumper types using basic corrective physics (positional adjustment and velocity reversal along the impact normal direction).

Raycasts VS Discs

Raycasts VS Discs

Raycasts VS Disc logic

Raycasts VS Line segments

Raycasts VS Line Segments

Raycasts VS Line segment logic

Raycasts VS AABB2D

Raycasts VS AABB2D

Raycasts VS AABB2D logic

Raycasts VS 3D polygons and plane

Raycasts VS 3D polygons

Raycasts VS 3D polygons and plane logic

Easing, Curves and Spline

​Easing functions supported by Polytree engine:

  • SmoothStart2, SmoothStart3, SmoothStart4, SmoothStart5, SmoothStart6.

  • SmoothStop2, SmoothStop3, SmoothStop4, SmoothStop5, SmoothStop6.

  • (2) SmoothStep3 (a.k.a. SmoothStep). SmoothStep3 can simply be a call to ComputeCubicBezier1D( 0, 0, 1, 1, t ), but performs best if optimized on paper first. SmoothStep3 can also be derived (in code or, better yet, on paper) as Interpolate( SmoothStart2(t), SmoothStop2(t), t ).

  • (2) SmoothStep5 (a.k.a. SmootherStep). SmoothStep5 can simply be a call to ComputeQuinticBezier1D( 0, 0, 0, 1, 1, 1, t ), but performs best if optimized on paper first.

  • (2) Hesitate3. Hesitate3 can simply be a call to ComputeCubicBezier1D( 0, 1, 0, 1, t ), but performs best if optimized on paper first.

  • (2) Hesitate5. Hesitate5 can simply be a call to ComputeQuinticBezier1D( 0, 1, 0, 1, 0, 1, t ), but performs best if optimized on paper first.

​

Curves supported by Polytree engine:

  • CubicBezierCurves

  • CubicHermiteCurves

​

The engine also supports Catmull rom splines.

Easing, Curves and Spline

Easing functions

Cubic Bezier Curve

Cubic Hermite Curve

Catmull rom spline

©2025 Anishva Bardhan.

  • logo-gmail-png-file-gmail-icon-svg-wikimedia-commons-0_edited
  • Twitter
  • github
  • LinkedIn
bottom of page