Difference between pages "NewtonMeshGetFacePointIndices" and "NewtonMaterialGetUserData"

From Newton Wiki
(Difference between pages)
Jump to: navigation, search
m (1 revision imported)
 
 
Line 1: Line 1:
== NewtonMeshGetFacePointIndices ==
+
== NewtonMaterialGetUserData ==
  
  void NewtonMeshGetFacePointIndices (const NewtonMesh* const mesh, const void* const face, int* const indices)
+
Syntax:
 +
 
 +
  void* NewtonMaterialGetUserData (const NewtonWorld* newtonWorld, int id0, int id1);
  
 
== Usage ==
 
== Usage ==
  
 
+
Retrieves userData associated with this material.
  
 
== Parameters ==
 
== Parameters ==
  
* const NewtonMesh* const mesh
+
* const NewtonWorld *newtonWorld - is the pointer to the Newton world.
* const void* const face
+
* int id0 - group id0.
* int* const indices
+
* int id1 - group id1.
 
 
== Return ==
 
* (Procedure)
 
 
 
== Description ==
 
 
 
  
 
== See also ==
 
== See also ==
  
 
+
[[Category:Physics Material Section]]
[[Category:Mesh joint functions]] [[Category:Newton Functions]] [[Category:Newton 3 Functions]] [[Category:Newton Functions without description]] [[Category:User defined mesh shape functions]]
+
[[Category:Newton Functions]]
 +
[[Category:Newton 3 Functions]]

Revision as of 08:02, 10 June 2019

NewtonMaterialGetUserData

Syntax:

void* NewtonMaterialGetUserData (const NewtonWorld* newtonWorld, int id0, int id1);

Usage

Retrieves userData associated with this material.

Parameters

  • const NewtonWorld *newtonWorld - is the pointer to the Newton world.
  • int id0 - group id0.
  • int id1 - group id1.

See also