MeshVisualizer Class
A visualizers that draws meshes.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public class MeshVisualizer : Visualizer
Remarks
A MeshVisualizer draws triangle meshes with textures or solid colors. It can only be applied to mesh features; all other feature types are ignored.
Although meshes are typically used in 3D views, there is some support for rendering georeferenced meshes in 2D views as well, with the OpenGL or DirectX renderers (not software). For instance, CameraProjectOperator will produce georeferenced meshes in 2D. But note that some of the material properties will be ignored in 2D.
Example
// Create mesh visualization with the given color
public static MeshVisualizer CreateMeshVisualizer(Color color)
{
// Create new Material
Material material = new Material();
// Set the given color in the Material
material.Color = color;
// Create new MeshVisualizer
MeshVisualizer meshVisualizer = new MeshVisualizer(material);
// Return the new MeshVisualizer
return meshVisualizer;
}
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
ResourceObject
Visualizer
MeshVisualizer
Platforms
Windows, Linux, Android
MeshVisualizer Members
The MeshVisualizer type has the following members.
Constructors
Name | Description |
---|---|
MeshVisualizer | Initializes a new instance of the MeshVisualizer class with the given material. |
Properties
Name | Description |
---|---|
Condition | Gets or sets a condition that must evaluate to true if the visualizer shall be applied to a feature. Inherited from Visualizer |
IsDisposed | Gets a value that tells whether the current MeshVisualizer has been disposed. Inherited from EngineObject |
Material | Gets or sets the material used for drawing a mesh. |
Name | Gets or sets the name of the MeshVisualizer. Inherited from ResourceObject |
NativeHandle | Gets the native Carmenta Engine kernel object the current MeshVisualizer represents. Inherited from EngineObject |
PickingSupport | Gets or sets a value specifying how much information is maintained when the visualizer creates a PresentationObject for a feature. Inherited from Visualizer |
RenderingPriority | Get or sets how the visualization is prioritized. |
IUserProperties.UserProperties | Gets the AttributeSet that contains the user properties. Inherited from IUserProperties |
Methods
Name | Description |
---|---|
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 |
Draw | Draws a feature on a drawable. Inherited from Visualizer |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |
FindChildObject | Overloaded. Finds the child object with the specified name. Inherited from Visualizer |
GetChildObjects | Overloaded. Gets the child objects of the current object. Inherited from Visualizer |