Phaser 4 — Geometry and Math
Geom classes (Circle, Ellipse, Line, Polygon, Rectangle, Triangle), intersection tests, and Math utilities (Vector2, Vector3, Matrix4, angles, distances, interpolation, easing, random, snap, clamp).
Related skills: graphics-and-shapes.md, physics-arcade.md
Quick Start
// Create geometry objects (these are data only, not renderable)
const rect = new Phaser.Geom.Rectangle(10, 20, 200, 100);
const circle = new Phaser.Geom.Circle(400, 300, 50);
const line = new Phaser.Geom.Line(0, 0, 100, 100);
// Point containment
rect.contains(50, 50); // true
circle.contains(410, 310); // true
// Intersection test
Phaser.Geom.Intersects.CircleToRectangle(circle, rect); // boolean
// Math utilities
const v = new Phaser.Math.Vector2(3, 4);
v.length(); // 5
v.normalize(); // {x: 0.6, y: 0.8}
const dist = Phaser.Math.Distance.Between(0, 0, 100, 100);
const angle = Phaser.Math.Angle.Between(0, 0, 100, 100);
const clamped = Phaser.Math.Clamp(150, 0, 100); // 100
Core Concepts
Geometry objects are pure data containers holding coordinates and dimensions. They are NOT game objects and cannot be added to the display list. To render geometry, use the Graphics game object or Shape game objects (see graphics-and-shapes.md).
Every geom class has a type property set to a Phaser.Geom constant for fast type checks.
All geom classes share a common instance method pattern:
contains(x, y) -- point-in-shape test
getPoint(position, output?) -- point at normalized position (0-1) on perimeter
getPoints(quantity, stepRate?, output?) -- evenly spaced points on perimeter
getRandomPoint(output?) -- random point inside the shape
setTo(...) -- reset all properties
setEmpty() -- zero out the shape
setPosition(x, y) -- move origin/center
Each geom type also has a folder of static helper functions (e.g., Phaser.Geom.Rectangle.Contains, Phaser.Geom.Circle.Area).
Geometry Classes
| Class |
Namespace |
Constructor |
Key Properties |
| Circle |
Phaser.Geom.Circle |
(x, y, radius) |
x, y, radius, diameter, left, right, top, bottom |
| Ellipse |
Phaser.Geom.Ellipse |
(x, y, width, height) |
x, y, width, height, left, right, top, bottom |
| Line |
Phaser.Geom.Line |
(x1, y1, x2, y2) |
x1, y1, x2, y2, left, right, top, bottom |
| Polygon |
Phaser.Geom.Polygon |
(points) |
area, points (array of Vector2Like) |
| Rectangle |
Phaser.Geom.Rectangle |
(x, y, width, height) |
x, y, width, height, left, right, top, bottom, centerX, centerY |
| Triangle |
Phaser.Geom.Triangle |
(x1, y1, x2, y2, x3, y3) |
x1, y1, x2, y2, x3, y3 |
Rectangle Static Helpers
Phaser.Geom.Rectangle.*: Area, Ceil, CeilAll, CenterOn, Clone, Contains, ContainsPoint, ContainsRect, CopyFrom, Decompose, Equals, FitInside, FitOutside, Floor, FloorAll, FromPoints, FromXY, GetAspectRatio, GetCenter, GetPoint, GetPoints, GetSize, Inflate, Intersection, MarchingAnts, MergePoints, MergeRect, MergeXY, Offset, OffsetPoint, Overlaps, Perimeter, PerimeterPoint, Random, RandomOutside, SameDimensions, Scale, Union.
Circle Static Helpers
Phaser.Geom.Circle.*: Area, Circumference, CircumferencePoint, Clone, Contains, ContainsPoint, ContainsRect, CopyFrom, Equals, GetBounds, GetPoint, GetPoints, Offset, OffsetPoint, Random.
Line Static Helpers
Phaser.Geom.Line.*: Angle, BresenhamPoints, CenterOn, Clone, CopyFrom, Equals, Extend, GetEasedPoints, GetMidPoint, GetNearestPoint, GetNormal, GetPoint, GetPoints, GetShortestDistance, Height, Length, NormalAngle, NormalX, NormalY, Offset, PerpSlope, Random, ReflectAngle, Rotate, RotateAroundPoint, RotateAroundXY, SetToAngle, Slope, Width.
Triangle Static Helpers
Phaser.Geom.Triangle.*: Area, BuildEquilateral, BuildFromPolygon, BuildRight, CenterOn, Centroid, CircumCenter, CircumCircle, Clone, Contains, ContainsArray, ContainsPoint, CopyFrom, Decompose, Equals, GetPoint, GetPoints, InCenter, Offset, Perimeter, Random, Rotate, RotateAroundPoint, RotateAroundXY.
Polygon Input Formats
The Polygon constructor accepts multiple formats for the points argument:
- Space-separated string:
'40 0 40 20 100 20 100 80'
- Array of
{x, y} objects
- Flat number array:
[x1, y1, x2, y2, ...]
- Array of
[x, y] sub-arrays
Intersection Tests
All under Phaser.Geom.Intersects.
Boolean Tests (return true/false)
| Function |
Description |
CircleToCircle(circleA, circleB) |
Two circles overlap |
CircleToRectangle(circle, rect) |
Circle overlaps rectangle |
LineToCircle(line, circle) |
Line segment intersects circle |
LineToLine(line1, line2, out?) |
Two line segments cross; writes point to out |
LineToRectangle(line, rect) |
Line segment intersects rectangle |
PointToLine(point, line, lineThickness?) |
Point lies on/near line |
PointToLineSegment(point, line) |
Point lies on finite line segment |
RectangleToRectangle(rectA, rectB) |
Two rectangles overlap |
RectangleToTriangle(rect, triangle) |
Rectangle overlaps triangle |
RectangleToValues(rect, left, right, top, bottom, tolerance?) |
Rectangle overlaps LRTB bounds |
TriangleToCircle(triangle, circle) |
Triangle overlaps circle |
TriangleToLine(triangle, line) |
Triangle intersects line |
TriangleToTriangle(triA, triB) |
Two triangles overlap |
Get Intersection Points (return Vector2[])
| Function |
Description |
GetCircleToCircle(circleA, circleB, out?) |
Intersection points of two circles |
GetCircleToRectangle(circle, rect, out?) |
Points where circle meets rectangle edges |
GetLineToCircle(line, circle, out?) |
Points where line crosses circle |
GetLineToLine(line1, line2, out?) |
Single intersection point of two lines |
GetLineToPoints(line, points, out?) |
Intersection with a series of points forming edges |
GetLineToPolygon(line, polygon, out?) |
Closest intersection with polygon edges |
GetLineToRectangle(line, rect, out?) |
Points where line crosses rectangle |
GetRaysFromPointToPolygon(x, y, polygon) |
Ray-cast from point to polygon edges |
GetRectangleIntersection(rectA, rectB, out?) |
Overlapping rectangle region |
GetRectangleToRectangle(rectA, rectB, out?) |
Edge intersection points |
GetRectangleToTriangle(rect, triangle, out?) |
Edge intersection points |
GetTriangleToCircle(triangle, circle, out?) |
Edge intersection points |
GetTriangleToLine(triangle, line, out?) |
Edge intersection points |
GetTriangleToTriangle(triA, triB, out?) |
Edge intersection points |
Math Functions by Category
All under Phaser.Math unless noted.
Constants
| Constant |
Value |
Phaser.Math.TAU |
PI * 2 (v4 addition) |
Phaser.Math.PI_OVER_2 |
PI / 2 |
Phaser.Math.EPSILON |
1.0e-6 |
Phaser.Math.DEG_TO_RAD |
PI / 180 |
Phaser.Math.RAD_TO_DEG |
180 / PI |
Phaser.Math.RND |
Global RandomDataGenerator instance (seeded via game config seed) |
Angle Functions (Phaser.Math.Angle.*)
| Function |
Description |
Between(x1, y1, x2, y2) |
Angle in radians between two points |
BetweenPoints(point1, point2) |
Same, taking {x,y} objects |
BetweenY(x1, y1, x2, y2) |
Angle from vertical axis |
BetweenPointsY(point1, point2) |
Same, taking objects |
CounterClockwise(angle) |
Convert to counter-clockwise |
GetClockwiseDistance(from, to) |
Clockwise angular distance |
GetCounterClockwiseDistance(from, to) |
Counter-clockwise angular distance |
GetShortestDistance(from, to) |
Shortest angular distance (signed) |
Normalize(angle) |
Normalize to [0, 2PI) |
Random() |
Random angle in radians |
RandomDegrees() |
Random angle in degrees |
Reverse(angle) |
Reverse (add PI) |
RotateTo(currentAngle, targetAngle, lerp?) |
Step toward target angle |
ShortestBetween(angle1, angle2) |
Shortest difference in degrees |
Wrap(angle) |
Wrap to (-PI, PI] |
WrapDegrees(angle) |
Wrap to (-180, 180] |
Distance Functions (Phaser.Math.Distance.*)
| Function |
Description |
Between(x1, y1, x2, y2) |
Euclidean distance |
BetweenPoints(a, b) |
Same, taking {x,y} objects |
BetweenPointsSquared(a, b) |
Squared distance (avoids sqrt) |
Chebyshev(x1, y1, x2, y2) |
Chebyshev (chessboard) distance |
Power(x1, y1, x2, y2, pow) |
Minkowski distance with custom power |
Snake(x1, y1, x2, y2) |
Manhattan/taxicab distance |
Squared(x1, y1, x2, y2) |
Squared Euclidean distance |
Interpolation (Phaser.Math.Interpolation.*)
| Function |
Description |
BezierInterpolation(v, k) |
Bezier curve through control points |
CatmullRomInterpolation(v, k) |
Catmull-Rom spline through points |
CubicBezierInterpolation(t, p0, p1, p2, p3) |
Cubic Bezier between four values |
LinearInterpolation(v, k) |
Linear through array of values |
QuadraticBezierInterpolation(t, p0, p1, p2) |
Quadratic Bezier |
SmoothStepInterpolation(t, min, max) |
Hermite smooth step |
SmootherStepInterpolation(t, min, max) |
Ken Perlin's smoother step |
Snap Functions (Phaser.Math.Snap.*)
| Function |
Description |
To(value, gap, start?, divide?) |
Snap to nearest increment |
Floor(value, gap, start?, divide?) |
Snap down to increment |
Ceil(value, gap, start?, divide?) |
Snap up to increment |
Fuzzy Comparison (Phaser.Math.Fuzzy.*)
| Function |
Description |
Equal(a, b, epsilon?) |
a approximately equals b |
LessThan(a, b, epsilon?) |
a < b within epsilon |
GreaterThan(a, b, epsilon?) |
a > b within epsilon |
Ceil(value, epsilon?) |
Fuzzy ceiling |
Floor(value, epsilon?) |
Fuzzy floor |
Easing Functions (Phaser.Math.Easing.*)
Each type has .In, .Out, .InOut variants. Used primarily by tweens (pass string names like 'Sine.easeOut').
| Type |
String Keys |
| Back |
Back.easeIn, Back.easeOut, Back.easeInOut |
| Bounce |
Bounce.easeIn, Bounce.easeOut, Bounce.easeInOut |
| Circular |
Circ.easeIn, Circ.easeOut, Circ.easeInOut |
| Cubic |
Cubic.easeIn, Cubic.easeOut, Cubic.easeInOut |
| Elastic |
Elastic.easeIn, Elastic.easeOut, Elastic.easeInOut |
| Expo |
Expo.easeIn, Expo.easeOut, Expo.easeInOut |
| Linear |
Linear (no variants) |
| Quadratic |
Quad.easeIn, Quad.easeOut, Quad.easeInOut |
| Quartic |
Quart.easeIn, Quart.easeOut, Quart.easeInOut |
| Quintic |
Quint.easeIn, Quint.easeOut, Quint.easeInOut |
| Sine |
Sine.easeIn, Sine.easeOut, Sine.easeInOut |
| Stepped |
Stepped (no variants) |
Power aliases: Power0 = Linear, Power1 = Quad.Out, Power2 = Cubic.Out, Power3 = Quart.Out, Power4 = Quint.Out.
Short names also work: 'Quad' = Quad.Out, 'Sine' = Sine.Out, etc.
Core Math Helpers (directly on Phaser.Math)
| Function |
Description |
Between(min, max) |
Random integer in [min, max] |
FloatBetween(min, max) |
Random float in [min, max] |
Clamp(value, min, max) |
Constrain value to range |
Wrap(value, min, max) |
Wrap value within range |
Within(a, b, tolerance) |
Check if a is within tolerance of b |
Percent(value, min, max, upperMax?) |
Value as percentage of range |
FromPercent(percent, min, max) |
Value from percentage of range |
DegToRad(degrees) |
Convert degrees to radians |
RadToDeg(radians) |
Convert radians to degrees |
Linear(p0, p1, t) |
Lerp between two values |
LinearXY(v1, v2, t, out?) |
Lerp between two Vector2Like objects |
SmoothStep(x, min, max) |
Hermite smooth step |
SmootherStep(x, min, max) |
Perlin smoother step |
Average(values) |
Mean of number array |
Median(values) |
Median of number array |
CeilTo(value, place?, base?) |
Ceil to decimal place |
FloorTo(value, place?, base?) |
Floor to decimal place |
RoundTo(value, place?, base?) |
Round to decimal place |
RoundAwayFromZero(value) |
Round away from zero |
MaxAdd(value, amount, max) |
Add clamped to max |
MinSub(value, amount, min) |
Subtract clamped to min |
Difference(a, b) |
Absolute difference |
IsEven(value) |
Integer is even |
IsEvenStrict(value) |
Strictly even (not zero) |
Factorial(value) |
Factorial |
Rotate(point, angle) |
Rotate point around origin |
RotateAround(point, cx, cy, angle) |
Rotate point around custom center |
RotateAroundDistance(point, cx, cy, angle, dist) |
Rotate at fixed distance |
TransformXY(x, y, posX, posY, rotation, scaleX, scaleY, output?) |
Full 2D transform |
GetSpeed(distance, time) |
Speed from distance and time |
RandomXY(vector, scale?) |
Set vector to random unit direction |
Power-of-Two (Phaser.Math.Pow2.*)
| Function |
Description |
GetPowerOfTwo(value) |
Next power of two >= value |
IsValuePowerOfTwo(value) |
Check if value is power of two |
IsSizePowerOfTwo(width, height) |
Check if both dimensions are power of two |
Vector2 Quick Reference
Phaser.Math.Vector2 -- 2D vector used throughout Phaser for positions, velocities, directions.
Constructor: new Vector2(x?, y?) or new Vector2({x, y}). If only x given, y defaults to x.
| Method |
Returns |
Description |
set(x, y) / setTo(x, y) |
this |
Set components |
setToPolar(angle, length?) |
this |
Set from angle + length |
copy(src) / setFromObject(obj) |
this |
Copy from Vector2Like |
clone() |
Vector2 |
New copy |
add(src) / subtract(src) |
this |
Component-wise add/subtract |
multiply(src) / divide(src) |
this |
Component-wise multiply/divide |
scale(value) |
this |
Multiply both components by scalar |
negate() |
this |
Flip sign of both components |
normalize() |
this |
Set length to 1 |
normalizeRightHand() |
this |
Perpendicular (right-hand rule) |
normalizeLeftHand() |
this |
Perpendicular (left-hand rule) |
limit(max) |
this |
Cap length to max |
setLength(length) |
this |
Scale to exact length |
length() |
number |
Magnitude |
lengthSq() |
number |
Squared magnitude (no sqrt) |
distance(src) |
number |
Distance to another vector |
distanceSq(src) |
number |
Squared distance |
dot(src) |
number |
Dot product |
cross(src) |
number |
2D cross product (scalar) |
angle() |
number |
Angle in radians from positive x-axis |
setAngle(angle) |
this |
Rotate to angle, keeping length |
rotate(delta) |
this |
Rotate by delta radians |
lerp(src, t) |
this |
Linear interpolate toward src |
reflect(normal) |
this |
Reflect off surface normal |
mirror(axis) |
this |
Mirror across axis vector |
project(src) |
this |
Project onto another vector |
equals(v) |
boolean |
Exact equality |
fuzzyEquals(v, epsilon?) |
boolean |
Approximate equality |
ceil() / floor() / invert() |
this |
Component transforms |
reset() |
this |
Set to (0, 0) |
transformMat3(mat) |
this |
Transform by Matrix3 |
transformMat4(mat) |
this |
Transform by Matrix4 |
Static: Vector2.ZERO, Vector2.RIGHT, Vector2.LEFT, Vector2.UP, Vector2.DOWN, Vector2.ONE.
Vector3 Quick Reference
Phaser.Math.Vector3 -- 3D vector for camera projections, lighting, 3D math.
Constructor: new Vector3(x?, y?, z?) or new Vector3({x, y, z}).
Key methods (same patterns as Vector2 plus): up(), min(v), max(v), addVectors(a, b), subVectors(a, b), crossVectors(a, b), cross(v), addScalar(s), addScale(v, scale), fromArray(array, offset?), setFromMatrixPosition(mat4), setFromMatrixColumn(mat4, index), applyMatrix3(mat), applyMatrix4(mat), transformCoordinates(mat), transformQuat(q), project(mat), projectViewMatrix(view, proj), unproject(viewport, invProjView).
Matrix4 Quick Reference
Phaser.Math.Matrix4 -- 4x4 matrix for 3D transforms, projection, and view matrices. Backed by Float32Array(16).
Constructor: new Matrix4(m?) -- copies from existing Matrix4, or defaults to identity.
Key methods: clone(), set(src), copy(src), identity(), transpose(), invert(), adjoint(), determinant(), multiply(src), multiplyLocal(src), translate(v), scale(v), rotate(angle, axis), rotateX(angle), rotateY(angle), rotateZ(angle), fromRotationTranslation(q, v), fromQuat(q), frustum(...), perspective(fovy, aspect, near, far), perspectiveLH(width, height, near, far), ortho(left, right, bottom, top, near, far), lookAt(eye, center, up), lookAtRH(eye, target, up), setWorldMatrix(rotation, position, scale, viewMatrix?, projectionMatrix?).
Also: Phaser.Math.Matrix3 -- 3x3 matrix for 2D transforms and normal matrices.
RandomDataGenerator
Phaser.Math.RandomDataGenerator -- seeded PRNG. Global instance at Phaser.Math.RND (seeded via game config seed property).
const rnd = Phaser.Math.RND; // or new Phaser.Math.RandomDataGenerator(['my-seed'])
rnd.integer(); // random integer in [0, 2^32]
rnd.frac(); // random float in [0, 1)
rnd.between(1, 10); // random integer in [1, 10]
rnd.integerInRange(1, 10); // alias for between
rnd.realInRange(0.5, 1.5); // random float in [0.5, 1.5]
rnd.normal(); // normal distribution around 0
rnd.angle(); // random angle in radians (-PI to PI)
rnd.rotation(); // random rotation in radians (same range)
rnd.pick(array); // random element from array
rnd.weightedPick(array); // weighted toward end of array
rnd.sign(); // -1 or 1
rnd.uuid(); // RFC4122 v4 UUID string
rnd.shuffle(array); // in-place Fisher-Yates shuffle
rnd.state(state?); // get/set serializable state for save/load
Create reproducible sequences by providing seeds: new RandomDataGenerator(['level-42']).
Color Utilities
Color Class (Phaser.Display.Color)
A mutable RGBA color representation with automatic conversion to WebGL floats, HSV, CSS strings, and packed integers.
// Construction
const color = new Phaser.Display.Color(255, 0, 0, 255); // RGBA (0-255)
// Creation helpers (return Color instances)
const c1 = Phaser.Display.Color.ValueToColor('#ff0000'); // hex string, integer, or object
const c2 = Phaser.Display.Color.HexStringToColor('#ff0000');
const c3 = Phaser.Display.Color.RGBStringToColor('rgb(255,0,0)');
const c4 = Phaser.Display.Color.HSVToRGB(0.5, 1, 1); // returns { r, g, b, color }
// Properties
color.r; color.g; color.b; color.a; // 0-255 integers
color.redGL; color.greenGL; color.blueGL; color.alphaGL; // 0-1 floats (WebGL)
color.color; // packed 24-bit integer (0xRRGGBB)
color.color32; // packed 32-bit integer (0xAARRGGBB)
color.rgba; // CSS string 'rgba(r,g,b,a)'
color.h; color.s; color.v; // HSV representation (read-only, auto-updated)
Color Manipulation
// Adjustment methods (amount is typically 0-100, returns the Color instance)
color.brighten(25); // increase brightness
color.saturate(50); // increase saturation
color.desaturate(30); // decrease saturation
color.lighten(20); // increase lightness
color.darken(10); // decrease lightness
// Utility methods
color.random(); // set to random RGB values (optional min/max range)
color.gray(128); // set to grayscale shade (0-255)
// Setting values
color.setTo(255, 128, 0, 255); // RGBA
color.setFromRGB({ r: 255, g: 128, b: 0, a: 255 });
color.setFromHSV(0.1, 0.8, 1.0); // HSV (0-1 range)
Color Interpolation (Phaser.Display.Color.Interpolate)
Interpolate between colors over a given length. Returns { r, g, b, a, color }.
// Between raw RGB values
const result = Phaser.Display.Color.Interpolate.RGBWithRGB(
255, 0, 0, // start color (r, g, b)
0, 0, 255, // end color (r, g, b)
100, // length (number of steps)
50 // index (current step)
); // returns midpoint purple { r, g, b, a, color }
// Between two Color objects
const mid = Phaser.Display.Color.Interpolate.ColorWithColor(color1, color2, 100, 50);
// HSV interpolation (v4): smooth hue transition
const hsvResult = Phaser.Display.Color.Interpolate.HSVWithHSV(0, 1, 1, 0.5, 1, 1, 100, 50);
Gotchas
Geom objects are not game objects. They have no scene, no setPosition from the display list, no texture. Use Graphics or Shape game objects to render them.
Point class removed in v4. Use Phaser.Math.Vector2 or plain {x, y} objects instead. The GEOM_CONST.POINT (3) exists but the Point class does not.
Angles are in radians throughout the math API. Use Phaser.Math.DegToRad() and RadToDeg() for conversion. The Phaser.Math.TAU constant (2 * PI) is new in v4.
Vector2 methods mutate in place and return this for chaining. Call .clone() first if you need to preserve the original: const result = v.clone().add(other).
Squared distance is faster than Euclidean distance (avoids Math.sqrt). Use Distance.Squared or vec.distanceSq() for comparisons where the actual distance value is not needed.
Intersection Get functions allocate arrays.* Pass a reusable out array to avoid garbage collection pressure in hot loops.
EaseMap short names default to the .Out variant. 'Quad' means Quadratic.Out, not Quadratic.In. Use full string keys like 'Quad.easeIn' for other variants.
RandomDataGenerator state is serializable. Call rnd.state() to get a string you can store, and rnd.state(savedString) to restore it for deterministic replay.
Polygon.contains uses ray-casting (even/odd rule). Complex self-intersecting polygons may give unexpected results.
Matrix4.val is a Float32Array. Access elements directly via mat.val[index] using column-major order (OpenGL convention).
Source File Map
| Area |
Path |
| Geom classes |
src/geom/{circle,ellipse,line,polygon,rectangle,triangle}/ |
| Geom constants |
src/geom/const.js |
| Intersection tests |
src/geom/intersects/ |
| Vector2 |
src/math/Vector2.js |
| Vector3 |
src/math/Vector3.js |
| Vector4 |
src/math/Vector4.js |
| Matrix3 |
src/math/Matrix3.js |
| Matrix4 |
src/math/Matrix4.js |
| Quaternion |
src/math/Quaternion.js |
| Euler |
src/math/Euler.js |
| Angle functions |
src/math/angle/ |
| Distance functions |
src/math/distance/ |
| Easing functions |
src/math/easing/ (+ EaseMap.js for string keys) |
| Fuzzy comparison |
src/math/fuzzy/ |
| Interpolation |
src/math/interpolation/ |
| Snap functions |
src/math/snap/ |
| Power-of-two |
src/math/pow2/ |
| RandomDataGenerator |
src/math/random-data-generator/RandomDataGenerator.js |
| Math constants |
src/math/const.js |
| Color class |
src/display/color/Color.js |
| Color utilities |
src/display/color/ (ValueToColor, HexStringToColor, RGBStringToColor, HSVToRGB, Interpolate) |
| Core math helpers |
src/math/ (Clamp.js, Between.js, Wrap.js, Linear.js, etc.) |
1---2name: geometry-and-math3description: Use this skill when using Phaser 4 math and geometry utilities. Covers vectors, rectangles, circles, triangles, polygons, random number generation, angles, distance, interpolation, and snapping. Triggers on: Vector2, Rectangle, Circle, math, distance, angle, random, lerp.4---56# Phaser 4 — Geometry and Math78> Geom classes (Circle, Ellipse, Line, Polygon, Rectangle, Triangle), intersection tests, and Math utilities (Vector2, Vector3, Matrix4, angles, distances, interpolation, easing, random, snap, clamp).910Related skills: graphics-and-shapes.md, physics-arcade.md1112---1314## Quick Start1516```js17// Create geometry objects (these are data only, not renderable)18const rect = new Phaser.Geom.Rectangle(10, 20, 200, 100);19const circle = new Phaser.Geom.Circle(400, 300, 50);20const line = new Phaser.Geom.Line(0, 0, 100, 100);2122// Point containment23rect.contains(50, 50); // true24circle.contains(410, 310); // true2526// Intersection test27Phaser.Geom.Intersects.CircleToRectangle(circle, rect); // boolean2829// Math utilities30const v = new Phaser.Math.Vector2(3, 4);31v.length(); // 532v.normalize(); // {x: 0.6, y: 0.8}3334const dist = Phaser.Math.Distance.Between(0, 0, 100, 100);35const angle = Phaser.Math.Angle.Between(0, 0, 100, 100);36const clamped = Phaser.Math.Clamp(150, 0, 100); // 10037```3839---4041## Core Concepts4243Geometry objects are pure data containers holding coordinates and dimensions. They are NOT game objects and cannot be added to the display list. To render geometry, use the Graphics game object or Shape game objects (see graphics-and-shapes.md).4445Every geom class has a `type` property set to a `Phaser.Geom` constant for fast type checks.4647All geom classes share a common instance method pattern:48- `contains(x, y)` -- point-in-shape test49- `getPoint(position, output?)` -- point at normalized position (0-1) on perimeter50- `getPoints(quantity, stepRate?, output?)` -- evenly spaced points on perimeter51- `getRandomPoint(output?)` -- random point inside the shape52- `setTo(...)` -- reset all properties53- `setEmpty()` -- zero out the shape54- `setPosition(x, y)` -- move origin/center5556Each geom type also has a folder of static helper functions (e.g., `Phaser.Geom.Rectangle.Contains`, `Phaser.Geom.Circle.Area`).5758---5960## Geometry Classes6162| Class | Namespace | Constructor | Key Properties |63|---|---|---|---|64| **Circle** | `Phaser.Geom.Circle` | `(x, y, radius)` | `x`, `y`, `radius`, `diameter`, `left`, `right`, `top`, `bottom` |65| **Ellipse** | `Phaser.Geom.Ellipse` | `(x, y, width, height)` | `x`, `y`, `width`, `height`, `left`, `right`, `top`, `bottom` |66| **Line** | `Phaser.Geom.Line` | `(x1, y1, x2, y2)` | `x1`, `y1`, `x2`, `y2`, `left`, `right`, `top`, `bottom` |67| **Polygon** | `Phaser.Geom.Polygon` | `(points)` | `area`, `points` (array of Vector2Like) |68| **Rectangle** | `Phaser.Geom.Rectangle` | `(x, y, width, height)` | `x`, `y`, `width`, `height`, `left`, `right`, `top`, `bottom`, `centerX`, `centerY` |69| **Triangle** | `Phaser.Geom.Triangle` | `(x1, y1, x2, y2, x3, y3)` | `x1`, `y1`, `x2`, `y2`, `x3`, `y3` |7071### Rectangle Static Helpers7273`Phaser.Geom.Rectangle.*`: Area, Ceil, CeilAll, CenterOn, Clone, Contains, ContainsPoint, ContainsRect, CopyFrom, Decompose, Equals, FitInside, FitOutside, Floor, FloorAll, FromPoints, FromXY, GetAspectRatio, GetCenter, GetPoint, GetPoints, GetSize, Inflate, Intersection, MarchingAnts, MergePoints, MergeRect, MergeXY, Offset, OffsetPoint, Overlaps, Perimeter, PerimeterPoint, Random, RandomOutside, SameDimensions, Scale, Union.7475### Circle Static Helpers7677`Phaser.Geom.Circle.*`: Area, Circumference, CircumferencePoint, Clone, Contains, ContainsPoint, ContainsRect, CopyFrom, Equals, GetBounds, GetPoint, GetPoints, Offset, OffsetPoint, Random.7879### Line Static Helpers8081`Phaser.Geom.Line.*`: Angle, BresenhamPoints, CenterOn, Clone, CopyFrom, Equals, Extend, GetEasedPoints, GetMidPoint, GetNearestPoint, GetNormal, GetPoint, GetPoints, GetShortestDistance, Height, Length, NormalAngle, NormalX, NormalY, Offset, PerpSlope, Random, ReflectAngle, Rotate, RotateAroundPoint, RotateAroundXY, SetToAngle, Slope, Width.8283### Triangle Static Helpers8485`Phaser.Geom.Triangle.*`: Area, BuildEquilateral, BuildFromPolygon, BuildRight, CenterOn, Centroid, CircumCenter, CircumCircle, Clone, Contains, ContainsArray, ContainsPoint, CopyFrom, Decompose, Equals, GetPoint, GetPoints, InCenter, Offset, Perimeter, Random, Rotate, RotateAroundPoint, RotateAroundXY.8687### Polygon Input Formats8889The Polygon constructor accepts multiple formats for the `points` argument:90- Space-separated string: `'40 0 40 20 100 20 100 80'`91- Array of `{x, y}` objects92- Flat number array: `[x1, y1, x2, y2, ...]`93- Array of `[x, y]` sub-arrays9495---9697## Intersection Tests9899All under `Phaser.Geom.Intersects`.100101### Boolean Tests (return `true`/`false`)102103| Function | Description |104|---|---|105| `CircleToCircle(circleA, circleB)` | Two circles overlap |106| `CircleToRectangle(circle, rect)` | Circle overlaps rectangle |107| `LineToCircle(line, circle)` | Line segment intersects circle |108| `LineToLine(line1, line2, out?)` | Two line segments cross; writes point to `out` |109| `LineToRectangle(line, rect)` | Line segment intersects rectangle |110| `PointToLine(point, line, lineThickness?)` | Point lies on/near line |111| `PointToLineSegment(point, line)` | Point lies on finite line segment |112| `RectangleToRectangle(rectA, rectB)` | Two rectangles overlap |113| `RectangleToTriangle(rect, triangle)` | Rectangle overlaps triangle |114| `RectangleToValues(rect, left, right, top, bottom, tolerance?)` | Rectangle overlaps LRTB bounds |115| `TriangleToCircle(triangle, circle)` | Triangle overlaps circle |116| `TriangleToLine(triangle, line)` | Triangle intersects line |117| `TriangleToTriangle(triA, triB)` | Two triangles overlap |118119### Get Intersection Points (return `Vector2[]`)120121| Function | Description |122|---|---|123| `GetCircleToCircle(circleA, circleB, out?)` | Intersection points of two circles |124| `GetCircleToRectangle(circle, rect, out?)` | Points where circle meets rectangle edges |125| `GetLineToCircle(line, circle, out?)` | Points where line crosses circle |126| `GetLineToLine(line1, line2, out?)` | Single intersection point of two lines |127| `GetLineToPoints(line, points, out?)` | Intersection with a series of points forming edges |128| `GetLineToPolygon(line, polygon, out?)` | Closest intersection with polygon edges |129| `GetLineToRectangle(line, rect, out?)` | Points where line crosses rectangle |130| `GetRaysFromPointToPolygon(x, y, polygon)` | Ray-cast from point to polygon edges |131| `GetRectangleIntersection(rectA, rectB, out?)` | Overlapping rectangle region |132| `GetRectangleToRectangle(rectA, rectB, out?)` | Edge intersection points |133| `GetRectangleToTriangle(rect, triangle, out?)` | Edge intersection points |134| `GetTriangleToCircle(triangle, circle, out?)` | Edge intersection points |135| `GetTriangleToLine(triangle, line, out?)` | Edge intersection points |136| `GetTriangleToTriangle(triA, triB, out?)` | Edge intersection points |137138---139140## Math Functions by Category141142All under `Phaser.Math` unless noted.143144### Constants145146| Constant | Value |147|---|---|148| `Phaser.Math.TAU` | PI * 2 (v4 addition) |149| `Phaser.Math.PI_OVER_2` | PI / 2 |150| `Phaser.Math.EPSILON` | 1.0e-6 |151| `Phaser.Math.DEG_TO_RAD` | PI / 180 |152| `Phaser.Math.RAD_TO_DEG` | 180 / PI |153| `Phaser.Math.RND` | Global `RandomDataGenerator` instance (seeded via game config `seed`) |154155### Angle Functions (`Phaser.Math.Angle.*`)156157| Function | Description |158|---|---|159| `Between(x1, y1, x2, y2)` | Angle in radians between two points |160| `BetweenPoints(point1, point2)` | Same, taking `{x,y}` objects |161| `BetweenY(x1, y1, x2, y2)` | Angle from vertical axis |162| `BetweenPointsY(point1, point2)` | Same, taking objects |163| `CounterClockwise(angle)` | Convert to counter-clockwise |164| `GetClockwiseDistance(from, to)` | Clockwise angular distance |165| `GetCounterClockwiseDistance(from, to)` | Counter-clockwise angular distance |166| `GetShortestDistance(from, to)` | Shortest angular distance (signed) |167| `Normalize(angle)` | Normalize to [0, 2PI) |168| `Random()` | Random angle in radians |169| `RandomDegrees()` | Random angle in degrees |170| `Reverse(angle)` | Reverse (add PI) |171| `RotateTo(currentAngle, targetAngle, lerp?)` | Step toward target angle |172| `ShortestBetween(angle1, angle2)` | Shortest difference in degrees |173| `Wrap(angle)` | Wrap to (-PI, PI] |174| `WrapDegrees(angle)` | Wrap to (-180, 180] |175176### Distance Functions (`Phaser.Math.Distance.*`)177178| Function | Description |179|---|---|180| `Between(x1, y1, x2, y2)` | Euclidean distance |181| `BetweenPoints(a, b)` | Same, taking `{x,y}` objects |182| `BetweenPointsSquared(a, b)` | Squared distance (avoids sqrt) |183| `Chebyshev(x1, y1, x2, y2)` | Chebyshev (chessboard) distance |184| `Power(x1, y1, x2, y2, pow)` | Minkowski distance with custom power |185| `Snake(x1, y1, x2, y2)` | Manhattan/taxicab distance |186| `Squared(x1, y1, x2, y2)` | Squared Euclidean distance |187188### Interpolation (`Phaser.Math.Interpolation.*`)189190| Function | Description |191|---|---|192| `BezierInterpolation(v, k)` | Bezier curve through control points |193| `CatmullRomInterpolation(v, k)` | Catmull-Rom spline through points |194| `CubicBezierInterpolation(t, p0, p1, p2, p3)` | Cubic Bezier between four values |195| `LinearInterpolation(v, k)` | Linear through array of values |196| `QuadraticBezierInterpolation(t, p0, p1, p2)` | Quadratic Bezier |197| `SmoothStepInterpolation(t, min, max)` | Hermite smooth step |198| `SmootherStepInterpolation(t, min, max)` | Ken Perlin's smoother step |199200### Snap Functions (`Phaser.Math.Snap.*`)201202| Function | Description |203|---|---|204| `To(value, gap, start?, divide?)` | Snap to nearest increment |205| `Floor(value, gap, start?, divide?)` | Snap down to increment |206| `Ceil(value, gap, start?, divide?)` | Snap up to increment |207208### Fuzzy Comparison (`Phaser.Math.Fuzzy.*`)209210| Function | Description |211|---|---|212| `Equal(a, b, epsilon?)` | a approximately equals b |213| `LessThan(a, b, epsilon?)` | a < b within epsilon |214| `GreaterThan(a, b, epsilon?)` | a > b within epsilon |215| `Ceil(value, epsilon?)` | Fuzzy ceiling |216| `Floor(value, epsilon?)` | Fuzzy floor |217218### Easing Functions (`Phaser.Math.Easing.*`)219220Each type has `.In`, `.Out`, `.InOut` variants. Used primarily by tweens (pass string names like `'Sine.easeOut'`).221222| Type | String Keys |223|---|---|224| Back | `Back.easeIn`, `Back.easeOut`, `Back.easeInOut` |225| Bounce | `Bounce.easeIn`, `Bounce.easeOut`, `Bounce.easeInOut` |226| Circular | `Circ.easeIn`, `Circ.easeOut`, `Circ.easeInOut` |227| Cubic | `Cubic.easeIn`, `Cubic.easeOut`, `Cubic.easeInOut` |228| Elastic | `Elastic.easeIn`, `Elastic.easeOut`, `Elastic.easeInOut` |229| Expo | `Expo.easeIn`, `Expo.easeOut`, `Expo.easeInOut` |230| Linear | `Linear` (no variants) |231| Quadratic | `Quad.easeIn`, `Quad.easeOut`, `Quad.easeInOut` |232| Quartic | `Quart.easeIn`, `Quart.easeOut`, `Quart.easeInOut` |233| Quintic | `Quint.easeIn`, `Quint.easeOut`, `Quint.easeInOut` |234| Sine | `Sine.easeIn`, `Sine.easeOut`, `Sine.easeInOut` |235| Stepped | `Stepped` (no variants) |236237Power aliases: `Power0` = Linear, `Power1` = Quad.Out, `Power2` = Cubic.Out, `Power3` = Quart.Out, `Power4` = Quint.Out.238239Short names also work: `'Quad'` = Quad.Out, `'Sine'` = Sine.Out, etc.240241### Core Math Helpers (directly on `Phaser.Math`)242243| Function | Description |244|---|---|245| `Between(min, max)` | Random integer in [min, max] |246| `FloatBetween(min, max)` | Random float in [min, max] |247| `Clamp(value, min, max)` | Constrain value to range |248| `Wrap(value, min, max)` | Wrap value within range |249| `Within(a, b, tolerance)` | Check if a is within tolerance of b |250| `Percent(value, min, max, upperMax?)` | Value as percentage of range |251| `FromPercent(percent, min, max)` | Value from percentage of range |252| `DegToRad(degrees)` | Convert degrees to radians |253| `RadToDeg(radians)` | Convert radians to degrees |254| `Linear(p0, p1, t)` | Lerp between two values |255| `LinearXY(v1, v2, t, out?)` | Lerp between two Vector2Like objects |256| `SmoothStep(x, min, max)` | Hermite smooth step |257| `SmootherStep(x, min, max)` | Perlin smoother step |258| `Average(values)` | Mean of number array |259| `Median(values)` | Median of number array |260| `CeilTo(value, place?, base?)` | Ceil to decimal place |261| `FloorTo(value, place?, base?)` | Floor to decimal place |262| `RoundTo(value, place?, base?)` | Round to decimal place |263| `RoundAwayFromZero(value)` | Round away from zero |264| `MaxAdd(value, amount, max)` | Add clamped to max |265| `MinSub(value, amount, min)` | Subtract clamped to min |266| `Difference(a, b)` | Absolute difference |267| `IsEven(value)` | Integer is even |268| `IsEvenStrict(value)` | Strictly even (not zero) |269| `Factorial(value)` | Factorial |270| `Rotate(point, angle)` | Rotate point around origin |271| `RotateAround(point, cx, cy, angle)` | Rotate point around custom center |272| `RotateAroundDistance(point, cx, cy, angle, dist)` | Rotate at fixed distance |273| `TransformXY(x, y, posX, posY, rotation, scaleX, scaleY, output?)` | Full 2D transform |274| `GetSpeed(distance, time)` | Speed from distance and time |275| `RandomXY(vector, scale?)` | Set vector to random unit direction |276277### Power-of-Two (`Phaser.Math.Pow2.*`)278279| Function | Description |280|---|---|281| `GetPowerOfTwo(value)` | Next power of two >= value |282| `IsValuePowerOfTwo(value)` | Check if value is power of two |283| `IsSizePowerOfTwo(width, height)` | Check if both dimensions are power of two |284285---286287## Vector2 Quick Reference288289`Phaser.Math.Vector2` -- 2D vector used throughout Phaser for positions, velocities, directions.290291Constructor: `new Vector2(x?, y?)` or `new Vector2({x, y})`. If only `x` given, `y` defaults to `x`.292293| Method | Returns | Description |294|---|---|---|295| `set(x, y)` / `setTo(x, y)` | this | Set components |296| `setToPolar(angle, length?)` | this | Set from angle + length |297| `copy(src)` / `setFromObject(obj)` | this | Copy from Vector2Like |298| `clone()` | Vector2 | New copy |299| `add(src)` / `subtract(src)` | this | Component-wise add/subtract |300| `multiply(src)` / `divide(src)` | this | Component-wise multiply/divide |301| `scale(value)` | this | Multiply both components by scalar |302| `negate()` | this | Flip sign of both components |303| `normalize()` | this | Set length to 1 |304| `normalizeRightHand()` | this | Perpendicular (right-hand rule) |305| `normalizeLeftHand()` | this | Perpendicular (left-hand rule) |306| `limit(max)` | this | Cap length to max |307| `setLength(length)` | this | Scale to exact length |308| `length()` | number | Magnitude |309| `lengthSq()` | number | Squared magnitude (no sqrt) |310| `distance(src)` | number | Distance to another vector |311| `distanceSq(src)` | number | Squared distance |312| `dot(src)` | number | Dot product |313| `cross(src)` | number | 2D cross product (scalar) |314| `angle()` | number | Angle in radians from positive x-axis |315| `setAngle(angle)` | this | Rotate to angle, keeping length |316| `rotate(delta)` | this | Rotate by delta radians |317| `lerp(src, t)` | this | Linear interpolate toward src |318| `reflect(normal)` | this | Reflect off surface normal |319| `mirror(axis)` | this | Mirror across axis vector |320| `project(src)` | this | Project onto another vector |321| `equals(v)` | boolean | Exact equality |322| `fuzzyEquals(v, epsilon?)` | boolean | Approximate equality |323| `ceil()` / `floor()` / `invert()` | this | Component transforms |324| `reset()` | this | Set to (0, 0) |325| `transformMat3(mat)` | this | Transform by Matrix3 |326| `transformMat4(mat)` | this | Transform by Matrix4 |327328Static: `Vector2.ZERO`, `Vector2.RIGHT`, `Vector2.LEFT`, `Vector2.UP`, `Vector2.DOWN`, `Vector2.ONE`.329330---331332## Vector3 Quick Reference333334`Phaser.Math.Vector3` -- 3D vector for camera projections, lighting, 3D math.335336Constructor: `new Vector3(x?, y?, z?)` or `new Vector3({x, y, z})`.337338Key methods (same patterns as Vector2 plus): `up()`, `min(v)`, `max(v)`, `addVectors(a, b)`, `subVectors(a, b)`, `crossVectors(a, b)`, `cross(v)`, `addScalar(s)`, `addScale(v, scale)`, `fromArray(array, offset?)`, `setFromMatrixPosition(mat4)`, `setFromMatrixColumn(mat4, index)`, `applyMatrix3(mat)`, `applyMatrix4(mat)`, `transformCoordinates(mat)`, `transformQuat(q)`, `project(mat)`, `projectViewMatrix(view, proj)`, `unproject(viewport, invProjView)`.339340---341342## Matrix4 Quick Reference343344`Phaser.Math.Matrix4` -- 4x4 matrix for 3D transforms, projection, and view matrices. Backed by `Float32Array(16)`.345346Constructor: `new Matrix4(m?)` -- copies from existing Matrix4, or defaults to identity.347348Key methods: `clone()`, `set(src)`, `copy(src)`, `identity()`, `transpose()`, `invert()`, `adjoint()`, `determinant()`, `multiply(src)`, `multiplyLocal(src)`, `translate(v)`, `scale(v)`, `rotate(angle, axis)`, `rotateX(angle)`, `rotateY(angle)`, `rotateZ(angle)`, `fromRotationTranslation(q, v)`, `fromQuat(q)`, `frustum(...)`, `perspective(fovy, aspect, near, far)`, `perspectiveLH(width, height, near, far)`, `ortho(left, right, bottom, top, near, far)`, `lookAt(eye, center, up)`, `lookAtRH(eye, target, up)`, `setWorldMatrix(rotation, position, scale, viewMatrix?, projectionMatrix?)`.349350Also: `Phaser.Math.Matrix3` -- 3x3 matrix for 2D transforms and normal matrices.351352---353354## RandomDataGenerator355356`Phaser.Math.RandomDataGenerator` -- seeded PRNG. Global instance at `Phaser.Math.RND` (seeded via game config `seed` property).357358```js359const rnd = Phaser.Math.RND; // or new Phaser.Math.RandomDataGenerator(['my-seed'])360361rnd.integer(); // random integer in [0, 2^32]362rnd.frac(); // random float in [0, 1)363rnd.between(1, 10); // random integer in [1, 10]364rnd.integerInRange(1, 10); // alias for between365rnd.realInRange(0.5, 1.5); // random float in [0.5, 1.5]366rnd.normal(); // normal distribution around 0367rnd.angle(); // random angle in radians (-PI to PI)368rnd.rotation(); // random rotation in radians (same range)369rnd.pick(array); // random element from array370rnd.weightedPick(array); // weighted toward end of array371rnd.sign(); // -1 or 1372rnd.uuid(); // RFC4122 v4 UUID string373rnd.shuffle(array); // in-place Fisher-Yates shuffle374rnd.state(state?); // get/set serializable state for save/load375```376377Create reproducible sequences by providing seeds: `new RandomDataGenerator(['level-42'])`.378379---380381## Color Utilities382383### Color Class (`Phaser.Display.Color`)384385A mutable RGBA color representation with automatic conversion to WebGL floats, HSV, CSS strings, and packed integers.386387```js388// Construction389const color = new Phaser.Display.Color(255, 0, 0, 255); // RGBA (0-255)390391// Creation helpers (return Color instances)392const c1 = Phaser.Display.Color.ValueToColor('#ff0000'); // hex string, integer, or object393const c2 = Phaser.Display.Color.HexStringToColor('#ff0000');394const c3 = Phaser.Display.Color.RGBStringToColor('rgb(255,0,0)');395const c4 = Phaser.Display.Color.HSVToRGB(0.5, 1, 1); // returns { r, g, b, color }396397// Properties398color.r; color.g; color.b; color.a; // 0-255 integers399color.redGL; color.greenGL; color.blueGL; color.alphaGL; // 0-1 floats (WebGL)400color.color; // packed 24-bit integer (0xRRGGBB)401color.color32; // packed 32-bit integer (0xAARRGGBB)402color.rgba; // CSS string 'rgba(r,g,b,a)'403color.h; color.s; color.v; // HSV representation (read-only, auto-updated)404```405406### Color Manipulation407408```js409// Adjustment methods (amount is typically 0-100, returns the Color instance)410color.brighten(25); // increase brightness411color.saturate(50); // increase saturation412color.desaturate(30); // decrease saturation413color.lighten(20); // increase lightness414color.darken(10); // decrease lightness415416// Utility methods417color.random(); // set to random RGB values (optional min/max range)418color.gray(128); // set to grayscale shade (0-255)419420// Setting values421color.setTo(255, 128, 0, 255); // RGBA422color.setFromRGB({ r: 255, g: 128, b: 0, a: 255 });423color.setFromHSV(0.1, 0.8, 1.0); // HSV (0-1 range)424```425426### Color Interpolation (`Phaser.Display.Color.Interpolate`)427428Interpolate between colors over a given length. Returns `{ r, g, b, a, color }`.429430```js431// Between raw RGB values432const result = Phaser.Display.Color.Interpolate.RGBWithRGB(433 255, 0, 0, // start color (r, g, b)434 0, 0, 255, // end color (r, g, b)435 100, // length (number of steps)436 50 // index (current step)437); // returns midpoint purple { r, g, b, a, color }438439// Between two Color objects440const mid = Phaser.Display.Color.Interpolate.ColorWithColor(color1, color2, 100, 50);441442// HSV interpolation (v4): smooth hue transition443const hsvResult = Phaser.Display.Color.Interpolate.HSVWithHSV(0, 1, 1, 0.5, 1, 1, 100, 50);444```445446---447448## Gotchas4494501. **Geom objects are not game objects.** They have no `scene`, no `setPosition` from the display list, no texture. Use Graphics or Shape game objects to render them.4514522. **Point class removed in v4.** Use `Phaser.Math.Vector2` or plain `{x, y}` objects instead. The `GEOM_CONST.POINT` (3) exists but the Point class does not.4534543. **Angles are in radians** throughout the math API. Use `Phaser.Math.DegToRad()` and `RadToDeg()` for conversion. The `Phaser.Math.TAU` constant (2 * PI) is new in v4.4554564. **Vector2 methods mutate in place** and return `this` for chaining. Call `.clone()` first if you need to preserve the original: `const result = v.clone().add(other)`.4574585. **Squared distance is faster** than Euclidean distance (avoids `Math.sqrt`). Use `Distance.Squared` or `vec.distanceSq()` for comparisons where the actual distance value is not needed.4594606. **Intersection Get* functions allocate arrays.** Pass a reusable `out` array to avoid garbage collection pressure in hot loops.4614627. **EaseMap short names** default to the `.Out` variant. `'Quad'` means `Quadratic.Out`, not `Quadratic.In`. Use full string keys like `'Quad.easeIn'` for other variants.4634648. **RandomDataGenerator state is serializable.** Call `rnd.state()` to get a string you can store, and `rnd.state(savedString)` to restore it for deterministic replay.4654669. **Polygon.contains uses ray-casting** (even/odd rule). Complex self-intersecting polygons may give unexpected results.46746810. **Matrix4.val is a Float32Array.** Access elements directly via `mat.val[index]` using column-major order (OpenGL convention).469470---471472## Source File Map473474| Area | Path |475|---|---|476| Geom classes | `src/geom/{circle,ellipse,line,polygon,rectangle,triangle}/` |477| Geom constants | `src/geom/const.js` |478| Intersection tests | `src/geom/intersects/` |479| Vector2 | `src/math/Vector2.js` |480| Vector3 | `src/math/Vector3.js` |481| Vector4 | `src/math/Vector4.js` |482| Matrix3 | `src/math/Matrix3.js` |483| Matrix4 | `src/math/Matrix4.js` |484| Quaternion | `src/math/Quaternion.js` |485| Euler | `src/math/Euler.js` |486| Angle functions | `src/math/angle/` |487| Distance functions | `src/math/distance/` |488| Easing functions | `src/math/easing/` (+ `EaseMap.js` for string keys) |489| Fuzzy comparison | `src/math/fuzzy/` |490| Interpolation | `src/math/interpolation/` |491| Snap functions | `src/math/snap/` |492| Power-of-two | `src/math/pow2/` |493| RandomDataGenerator | `src/math/random-data-generator/RandomDataGenerator.js` |494| Math constants | `src/math/const.js` |495| Color class | `src/display/color/Color.js` |496| Color utilities | `src/display/color/` (ValueToColor, HexStringToColor, RGBStringToColor, HSVToRGB, Interpolate) |497| Core math helpers | `src/math/` (Clamp.js, Between.js, Wrap.js, Linear.js, etc.) |