Geometry3d.aip Verified | 2026 |

The most common form of 3D data is the polygon mesh. A mesh is a collection of vertices, edges, and faces (usually triangles or quads) that defines the shape of a polyhedral object.

# Common imports from geometry3d import Point, Vector, Line, Plane, Triangle, Sphere, Box geometry3d.aip

# Define a transform obj_transform = g3d.Transform( position=g3d.Vector3(0, 10, 0), rotation=g3d.Quaternion.from_euler(0, 45, 0), scale=g3d.Vector3(1, 1, 1) ) The most common form of 3D data is the polygon mesh

# Operations distance = origin.distance_to(point_a) direction = (point_a - origin).normalized() geometry3d.aip