Beispiel #1
0
 public void AddVertex(CAMeshVertex meshVertex)
 {
     add_vertex_msgSend(meshNativeObject.Handle, AddVertexSelector.Handle, meshVertex);
 }
Beispiel #2
0
 private static extern void add_vertex_msgSend(IntPtr target, IntPtr selector, CAMeshVertex meshVertex);
Beispiel #3
0
 private static extern void replace_vertex_at_index_msgSend(IntPtr target, IntPtr selector, ulong index, CAMeshVertex vertex);
Beispiel #4
0
 public void ReplaceVertex(uint index, CAMeshVertex vertex)
 {
     replace_vertex_at_index_msgSend(meshNativeObject.Handle, ReplaceVertexAtIndexSelector.Handle, index, vertex);
 }