Skip to content

Emerix/pb_CSG

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pb_CSG

A C# port of CSG.js by Evan W for use in the Unity game engine.

Quick Start

pb_CSG provides an interface in the CSG class for creating new meshes from boolean operations. Each function (Union, Subtract, Intersect) accepts 2 gameObjects: the left and right side. A new mesh is returned.

Example use:

// Include the library
using Parabox.CSG;

...

// Initialize two new meshes in the scene
GameObject cube = GameObject.CreatePrimitive(PrimitiveType.Cube);
GameObject sphere = GameObject.CreatePrimitive(PrimitiveType.Sphere);
sphere.transform.localScale = Vector3.one * 1.3;

// Perform boolean operation
Mesh m = CSG.Subtract(cube, sphere);

// Create a gameObject to render the result
composite = new GameObject();
composite.AddComponent<MeshFilter>().sharedMesh = m;

Result:

Releases

No releases published

Packages

No packages published

Languages

  • C# 48.4%
  • JavaScript 37.1%
  • HTML 7.6%
  • CSS 3.4%
  • GLSL 2.5%
  • ApacheConf 1.0%