Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 822 Bytes

README.md

File metadata and controls

39 lines (30 loc) · 822 Bytes

unity-mesh-builder

Primitive mesh builders for Unity.

Demo

Usage

Mesh mesh = PlaneBuilder.Build(
    5f,     // width
    10f,    // height
    2,      // width segments
    4       // height segments
);

Primitives

  • Plane (Parametric)
  • Cube
  • Cylinder
  • Sphere
  • Icosphere (Icohedron)
  • Octahedron
  • Frustum
  • Cone
  • Torus
  • Ring

Another primitives are in progress ...

Sources