Click or drag to resize
Ab4d.SharpEngine logo

CustomMesh Class

CustomMesh is a Mesh that is defined by custom vertex and index buffers. The vertex and index buffers must be created by the same VulkanDevice that is used by this CustomMesh. This CustomMesh cannot automatically support hit testing because it does not have access to triangles data. To provide hit testing support, derive your own class from CustomMesh and implement IRayHitTestedObject interface.
Inheritance Hierarchy
SystemObject
  Ab4d.SharpEngine.CoreComponentBase
    Ab4d.SharpEngine.CoreInitializedSceneComponent
      Ab4d.SharpEngine.MeshesMesh
        Ab4d.SharpEngine.MeshesCustomMesh

Namespace: Ab4d.SharpEngine.Meshes
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public class CustomMesh : Mesh

The CustomMesh type exposes the following members.

Constructors
 NameDescription
Public methodCustomMesh Constructor
Top
Methods
 NameDescription
Public methodGetDetailsText GetDetailsText method gets string with values of individual vertices and triangle indices of this mesh.
(Overrides MeshGetDetailsText(Boolean, Boolean, Boolean, Int32, Int32, Int32))
Top
See Also