MeshInfo Structure
Holds information about a 3D model.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public sealed class MeshInfo : EngineValueType
Remarks
This value class holds a MeshGeometry and a corresponding Material. It is used to return information about 3D models loaded by Symbol3D.LoadMeshes.
Some model formats may contain level of detail information; the model may be defined multiple times in different resolutions. The software rendering the model should select one of the levels depending on the viewing distance. This information is returned through the MinDistance and MaxDistance properties, and the mesh in this instance should only be rendered if the actual viewing distance is between these two values.
Inheritance Hierarchy
System.Object (not available in C#)
EngineValueType
MeshInfo
Platforms
Windows, Linux, Android
MeshInfo Members
The MeshInfo type has the following members.
Constructors
Properties
Name | Description |
---|
Name | Description |
---|---|
Material | Gets the material to use for the mesh. |
MaxDistance | Gets the maximum distance in meters at which the mesh should be rendered. |
Mesh | Gets the mesh geometry. |
MinDistance | Gets the minimum distance in meters at which the mesh should be rendered. |
Methods
Name | Description |
---|---|
Equals | Overloaded. Determines whether two MeshInfo objects have the same value. |
GetHashCode | Returns the hash code for this MeshInfo. |
Determines whether two specified MeshInfo objects have the same value. | |
Determines whether two specified MeshInfo objects have different values. | |
ToString | Converts this MeshInfo to a human readable string. |