Remove .mtl file and add doxygen documentation in TriangleVertexArray
This commit is contained in:
parent
357e0792ea
commit
5b7a096e27
|
@ -29,6 +29,19 @@
|
|||
using namespace reactphysics3d;
|
||||
|
||||
// Constructor
|
||||
/// Note that your data will not be copied into the TriangleVertexArray and
|
||||
/// therefore, you need to make sure that those data are always valid during
|
||||
/// the lifetime of the TriangleVertexArray.
|
||||
/**
|
||||
* @param nbVertices Number of vertices in the array
|
||||
* @param verticesStart Pointer to the first vertices of the array
|
||||
* @param verticesStride Number of bytes between the beginning of two consecutive vertices
|
||||
* @param nbTriangles Number of triangles in the array
|
||||
* @param indexesStart Pointer to the first triangle index
|
||||
* @param indexesStride Number of bytes between the beginning of two consecutive triangle indices
|
||||
* @param vertexDataType Type of data for the vertices (float, double)
|
||||
* @param indexDataType Type of data for the indices (short, int)
|
||||
*/
|
||||
TriangleVertexArray::TriangleVertexArray(uint nbVertices, void* verticesStart, int verticesStride,
|
||||
uint nbTriangles, void* indexesStart, int indexesStride,
|
||||
VertexDataType vertexDataType, IndexDataType indexDataType) {
|
||||
|
|
|
@ -39,7 +39,7 @@ namespace reactphysics3d {
|
|||
* into the array. It only stores pointer to the data. The purpose is to allow
|
||||
* the user to share vertices data between the physics engine and the rendering
|
||||
* part. Therefore, make sure that the data pointed by a TriangleVertexArray
|
||||
* remain valid during the TriangleVertexArray life.
|
||||
* remains valid during the TriangleVertexArray life.
|
||||
*/
|
||||
class TriangleVertexArray {
|
||||
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
# Blender MTL File: 'None'
|
||||
# Material Count: 1
|
||||
|
||||
newmtl None
|
||||
Ns 0
|
||||
Ka 0.000000 0.000000 0.000000
|
||||
Kd 0.8 0.8 0.8
|
||||
Ks 0.8 0.8 0.8
|
||||
d 1
|
||||
illum 2
|
Loading…
Reference in New Issue
Block a user