What problem does it solve? Phaser 4 developers often need quick, accurate guidance on geometry objects, intersection tests, vectors, matrices, easing, and random number generation without digging through the full engine source or documentation. ## Core Features & Use Cases - Geometry and Intersection Reference: Covers Circle, Ellipse, Line, Polygon, Rectangle, and Triangle classes plus all boolean and point-returning intersection tests under Phaser.Geom.Intersects. - Math Utilities Catalog: Documents Vector2, Vector3, Matrix4, angle and distance functions, interpolation, easing, snapping, fuzzy comparison, and the seeded RandomDataGenerator. - Color Utilities: Explains the Phaser.Display.Color class, HSV/RGB conversion, and color interpolation helpers. - Use Case: While building a Phaser platformer, you need to detect whether a line of sight crosses a wall rectangle and smoothly rotate an enemy toward the player; this Skill provides the exact API calls and gotchas. ## Quick Start Ask how to test whether a circle overlaps a rectangle in Phaser 4 and how to compute the angle between two points.