Click or drag to resize

IReadonlyMesh Interface

Readonly mesh. Provides read access to mesh.

Namespace:  Karamba.Geometry
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface IReadonlyMesh

The IReadonlyMesh type exposes the following members.

Properties
  NameDescription
Public propertyFaces
Get mesh faces.
Public propertyNormals
Get vertex normals.
Public propertyVertexColors
Get mesh vertex colors.
Public propertyVertices
Get mesh vertices.
Top
Methods
  NameDescription
Public methodCopy
return a copy of the mesh
Public methodGetVertex
Get vertex at index.
Top
Extension Methods
  NameDescription
Public Extension MethodConvert
Convert to mesh to rhino mesh. If the mesh is already of type RhinoMesh, the underlying mesh Mesh is returned without creating a copy of it. Otherwise, a new rhino mesh instance is created from the supplied mesh. The following attributes/properties are taken into account. (1) Mesh topology (vertices, faces) (2) Vertex normals. (3) Vertex colors.
(Defined by MeshExtensions.)
Top
See Also