Sculpting Pro APi Documentation
Sculpting Pro - Plane Geometry
Simple procedural geometry. Call 'GetPrimitive' to return the specific geometry mesh data.
Public Methods
public static Mesh GetPrimitive(int resolution = 24, float length = 1.0f, float width = 1.0f, string meshName = "Plane")
// Returns a completely generated geometry
Examples
The following paragraph contains an example script that generates a specific primitive geometry type.
using UnityEngine;
using SculptingPro.Geometry;

/// <summary>
/// Example script for getting the procedural primitive type. Assign this script to an object with MeshFilter component.
/// </summary>
public class TestScript : MonoBehaviour
{
private MeshFilter meshFilter;

private void Start()
 {
  meshFilter = GetComponent<MeshFilter>();
  meshFilter.mesh = SculptingProGeometry_Plane.GetPrimitive();
 }
}