MeshGeometry Class
Represents a geometry that is a triangulated 3D mesh.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public class MeshGeometry : VectorGeometry
Remarks
A MeshGeometry consists of a set of vertices and a set of triangles that form a surface. A texture coordinate and surface normal may be specified for each vertex. A MeshGeometry may also define edges on the mesh that should be visualized as lines.
A valid MeshGeometry must have at least three vertices and at least one triangle.
A Feature with a MeshGeometry has its triangles visualized by a MeshVisualizer and its edges by a LineVisualizer.
![]() |
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
Geometry
VectorGeometry
MeshGeometry
Platforms
Windows, Linux, Android
MeshGeometry Members
The MeshGeometry type has the following members.
Constructors
Name | Description |
---|---|
MeshGeometry | Initializes a new instance of the MeshGeometry class. |
Properties
Name | Description |
---|---|
Edges | Gets the collection of Edge elements that defines the edges of the MeshGeometry. |
IsDisposed | Gets a value that tells whether the current MeshGeometry has been disposed. Inherited from EngineObject |
IsReadOnly | Gets a value indicating whether the MeshGeometry is read-only or not. Inherited from Geometry |
IsValid | Gets a value indicating whether the MeshGeometry is valid or not. Inherited from Geometry |
NativeHandle | Gets the native Carmenta Engine kernel object the current MeshGeometry represents. Inherited from EngineObject |
Normals | Gets the collection of Point elements that represent the surface normals of the MeshGeometry. |
TextureCoordinates | Gets the collection that contains the texture coordinates for all vertices of the MeshGeometry. |
Triangles | Gets the collection of Triangle elements that defines the triangles of the MeshGeometry. |
Type | Gets the geometry type of a MeshGeometry. Inherited from Geometry |
Vertices | Gets the collection of Point elements that represent the vertices of the MeshGeometry. |
Methods
Name | Description |
---|---|
CalculateBounds | Returns the bounding rectangle of the Geometry. Inherited from Geometry |
Clone | Creates a copy of an object. Inherited from EngineObject |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |
Overloaded. Initializes a new Geometry instance from a WKB representation. Inherited from Geometry | |
Overloaded. Initializes a new Geometry instance from a WKT representation. Inherited from Geometry | |
Move | Moves the Geometry by the specified offset. Inherited from Geometry |
RayIntersections | Overloaded. Finds the intersections between this MeshGeometry and a ray. |
ToWellKnownBinary | Converts a Geometry instance into WKB representation. Inherited from Geometry |
ToWellKnownText | Converts a Geometry instance into WKT representation. Inherited from Geometry |
Transform | Applies a 2D transform to the geometry. Inherited from Geometry |