Mesh Tools

Like what you are seeing?

Introduction

public static class MeshTools

Found in namespace:

using HeathenEngineering.UnityPhysics.API;

We recommend using aliases to reduce typing and simplify names. and reduce possible collisions with similarly named objects.

using API = HeathenEngineering.UnityPhysics.API;

doing this you can fully qualify the name of this class as

API.MeshTools

What can it do?

Mesh tools is used to create convex hulls, calculate the volume of a mesh, find surface area and various other geometry functions handy when your working on physics problems.

Convex Hull

The most common use of mesh tools is to create a convex hull. You can get a convex hull for a single mesh, multiple mesh or for any collection of points in space.

Mesh Volume

You can find the volume of a mesh, or find the convex hull of a mesh then find the volume of that

or

Surface Area

Whole Mesh

Cross Section area

Area and Volume

A quick short cut to do both

Last updated