MCPcopy Create free account
hub / github.com/DanielChappuis/reactphysics3d / TriangleMesh

Method TriangleMesh

src/collision/TriangleMesh.cpp:35–39  ·  view source on GitHub ↗

Constructor

Source from the content-addressed store, hash-verified

33
34// Constructor
35TriangleMesh::TriangleMesh(MemoryAllocator& allocator)
36 : mAllocator(allocator), mVertices(allocator), mTriangles(allocator),
37 mVerticesNormals(allocator), mDynamicAABBTree(allocator), mEpsilon(0) {
38
39}
40
41// Initialize the mesh using a TriangleVertexArray
42bool TriangleMesh::init(const TriangleVertexArray& triangleVertexArray, std::vector<Message>& messages) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected