Update documentation
This commit is contained in:
parent
41dfaf0fa5
commit
d5a471f964
Binary file not shown.
|
@ -56,7 +56,7 @@
|
|||
\begin{itemize}
|
||||
\item Rigid body dynamics
|
||||
\item Discrete collision detection
|
||||
\item Collision shapes (Sphere, Box, Cone, Cylinder, Capsule, Convex Mesh)
|
||||
\item Collision shapes (Sphere, Box, Cone, Cylinder, Capsule, Convex Mesh, Static Concave Mesh, Height Field)
|
||||
\item Multiple collision shapes per body
|
||||
\item Broadphase collision detection (Dynamic AABB tree)
|
||||
\item Narrowphase collision detection (GJK/EPA)
|
||||
|
@ -68,7 +68,7 @@
|
|||
\item Integrated Profiler
|
||||
\item Multi-platform (Windows, Linux, Mac OS X)
|
||||
\item Documentation (User manual and Doxygen API)
|
||||
\item Examples
|
||||
\item Testbed application with demos
|
||||
\item Unit tests
|
||||
\end{itemize}
|
||||
|
||||
|
@ -87,10 +87,9 @@
|
|||
If you have never used cmake before, you should read the page \url{http://www.cmake.org/cmake/help/runningcmake.html} as
|
||||
it contains a lot of useful information. \\
|
||||
|
||||
Note that by default, the library is built in \emph{debugging} mode. In this mode, a lot of debugging information is compiled together with the code.
|
||||
This might cause the application to run much slower that it should be in \emph{release} mode. Therefore, you should not forget to build the library in
|
||||
\emph{release} mode when releasing your final application.
|
||||
|
||||
It is also possible to compile the testbed application using CMake. The testbed application contains different
|
||||
demo scenes using the ReactPhysics3D library.
|
||||
xs
|
||||
\subsection{CMake using the command line (Linux and Mac OS X)}
|
||||
|
||||
Now, we will see how to build the ReactPhysics3D library using the CMake tool with the command line.
|
||||
|
@ -101,7 +100,7 @@
|
|||
|
||||
\begin{sloppypar}
|
||||
where \texttt{\textless path\_to\_library\_source\textgreater} must be replaced
|
||||
by the path to the \texttt{reactphysics3d-0.5.0/} folder. It is the folder that
|
||||
by the path to the \texttt{reactphysics3d-0.6.0/} folder. It is the folder that
|
||||
contains the \texttt{CMakeLists.txt} file. Running this command will launch the CMake command line interface.
|
||||
Hit the 'c' key to configure the project. There, you can also change some predefined variables (see section \ref{sec:cmakevariables} for more details)
|
||||
and then, hit the 'c' key again. Once you have set all the values as you like, you can hit the 'g' key to generate the makefiles in the build directory
|
||||
|
@ -118,9 +117,9 @@
|
|||
|
||||
You can also use the graphical user interface of CMake. To do this,
|
||||
run the \texttt{cmake-gui} program. The program will ask you for the
|
||||
source folder which is the \texttt{reactphysics3d-0.5.0/} folder of
|
||||
source folder which is the \texttt{reactphysics3d-0.6.0/} folder of
|
||||
the library. You will also have to select a folder where you want to
|
||||
build the library and the examples. Select any empty folder that
|
||||
build the library and the testbed application. Select any empty folder that
|
||||
is on your system. Then, you can click on \texttt{Configure}. CMake will ask you to choose an IDE that is on
|
||||
your system. For instance, you can select Visual Studio, Qt Creator, XCode, ... Then, you
|
||||
can change the compilation options. See section \ref{sec:cmakevariables} to see what are the possible options.
|
||||
|
@ -130,10 +129,6 @@
|
|||
library, you should be able to open the project file that corresponds to your IDE and compile
|
||||
the library. \\
|
||||
|
||||
If your want to run the examples within the Microsoft Visual Studio IDE, you need to make sure that in the
|
||||
\emph{Debugging} section of the \emph{Configuration Properties} of the example projects, the \emph{Working Directory} is set to \texttt{\$(OutDir)}.
|
||||
Otherwise, you might have problems to run the examples.
|
||||
|
||||
\subsection{CMake Variables}
|
||||
\label{sec:cmakevariables}
|
||||
|
||||
|
@ -147,9 +142,9 @@
|
|||
and therefore, it will run much faster. This mode must be used when you compile the final
|
||||
release of you application.
|
||||
|
||||
\item[COMPILE\_EXAMPLES] If this variable is \texttt{ON}, the examples of the library will be compiled.
|
||||
The examples use OpenGL for rendering. You will also need to have the GLEW library (\url{http://glew.sourceforge.net/})
|
||||
to run them. Take a look at the section \ref{sec:examples} for more information about the examples.
|
||||
\item[COMPILE\_TESTBED] If this variable is \texttt{ON}, the tesbed application of the library will be compiled.
|
||||
The testbed application uses OpenGL for rendering.
|
||||
Take a look at the section \ref{sec:testbed} for more information about the testbed application.
|
||||
|
||||
\item[COMPILE\_TESTS] If this variable is \texttt{ON}, the unit tests of the library will be compiled. You will then
|
||||
be able to launch the tests to make sure that they are running fine on your system.
|
||||
|
@ -289,8 +284,7 @@ body->setTransform(newTransform);
|
|||
|
||||
\begin{sloppypar}
|
||||
In order to destroy a Collision Body from the world, you need to use the \texttt{CollisionWorld::destroyCollisionBody()} method. You need to use the pointer to the body you
|
||||
want to destroy in argument. Note that after calling that method, the pointer will not be valid anymore and therefore, you should not use it. Note that you must
|
||||
destroy all the bodies at the end of the simulation before you destroy the world. \\
|
||||
want to destroy in argument. Note that after calling that method, the pointer will not be valid anymore and therefore, you should not use it. \\
|
||||
\end{sloppypar}
|
||||
|
||||
Here is how to destroy a Collision Body: \\
|
||||
|
@ -522,6 +516,11 @@ rigidBody->enableGravity(false);
|
|||
another body. However, if the value is 1, the friction force will be high. You can change the friction coefficient of the material with the
|
||||
\texttt{Material::setFrictionCoefficient()} method. \\
|
||||
|
||||
You can use the material to add rolling resistance to a rigid body. Rolling resistance can be used to stop
|
||||
a rolling object on a flat surface for instance. You should use this only with SphereShape,
|
||||
CapsuleShape, CylinderShape or ConeShape collision shapes. By default, rolling resistance is zero but you can
|
||||
set a positive value using the \texttt{Material::setRollingResistance()} method to increase resistance. \\
|
||||
|
||||
Here is how to get the material of a rigid body and how to modify some of its properties : \\
|
||||
|
||||
\begin{lstlisting}
|
||||
|
@ -873,13 +872,120 @@ for (unsigned int i=0; i<mesh.getNbFaces(); i++) {
|
|||
collisionShape.setIsEdgesInformationUsed(true);
|
||||
\end{lstlisting}
|
||||
|
||||
\subsection{Concave Mesh Shape}
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics{concavemeshshape.png}
|
||||
\label{fig:concaveshape}
|
||||
\end{figure}
|
||||
|
||||
The \texttt{ConcaveMeshShape} class can be used for a static concave triangular mesh. It can be used to describe an environment for
|
||||
instance. Note that it cannot be used with a dynamic body that is allowed to move. Moreover, make sure to use a \texttt{ConcaveMeshShape} only
|
||||
when you are not able to use a convex shape and also try to limit the number of triangles of that mesh because collision detection
|
||||
with \texttt{ConcaveMeshShape} is quite expensive compared to convex shapes. \\
|
||||
|
||||
In order to create a concave mesh shape, you need to supply a pointer to a \texttt{TriangleMesh}. A \texttt{TriangleMesh} is a class
|
||||
that describes a mesh made of triangles. A \texttt{TriangleMesh} can contain several parts (submeshes). Each part is a set of
|
||||
triangles represented by a \texttt{TriangleVertexArray} object. First, you need to create a \texttt{TriangleVertexArray}. A \texttt{TriangleVertexArray} represents
|
||||
a continuous array of vertices and indexes for a triangular mesh. When you create a \texttt{TriangleVertexArray}, no data is copied
|
||||
into the array. It only stores a pointer to the data. The goal 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 \texttt{TriangleVertexArray} remains valid during the whole \texttt{TriangleVertexArray} life.
|
||||
\\
|
||||
|
||||
The following example show how to create a \texttt{TriangleVertexArray}: \\
|
||||
|
||||
\begin{lstlisting}
|
||||
const int nbVertices = 8;
|
||||
const int nbTriangles = 12;
|
||||
float vertices[3 * nbVertices] = ...;
|
||||
int indices[3 * nbTriangles] = ...;
|
||||
rp3d::TriangleVertexArray* triangleArray =
|
||||
new rp3d::TriangleVertexArray(nbVertices, vertices, 3 * sizeof(float), nbTriangles, indices, sizeof(int),
|
||||
rp3d::TriangleVertexArray::VERTEX_FLOAT_TYPE,
|
||||
rp3d::TriangleVertexArray::INDEX_INTEGER_TYPE);
|
||||
\end{lstlisting}
|
||||
|
||||
\vspace{0.6cm}
|
||||
|
||||
Now that we have a \texttt{TriangleVertexArray}, we need to create a \texttt{TriangleMesh} and add the \texttt{TriangleVertexArray}
|
||||
into it as a subpart. Once this is done, we can create the actual \texttt{ConcaveMeshShape} and add it to the body we want to
|
||||
simulate as in the following example: \\
|
||||
|
||||
\begin{lstlisting}
|
||||
rp3d::TriangleMesh triangleMesh;
|
||||
|
||||
// Add the triangle vertex array to the triangle mesh
|
||||
triangleMesh.addSubpart(triangleArray);
|
||||
|
||||
// Create the concave mesh shape
|
||||
ConcaveMesh* concaveMesh = new rp3d::ConcaveMeshShape(&triangleMesh);
|
||||
\end{lstlisting}
|
||||
|
||||
\vspace{0.6cm}
|
||||
|
||||
Note that the \texttt{TriangleMesh} object also needs to exist during the whole life of the collision shape because its
|
||||
data is not copied into the collision shape.
|
||||
|
||||
\subsection{Heightfield Shape}
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics{heightfieldshape.png}
|
||||
\label{fig:heightfieldshape}
|
||||
\end{figure}
|
||||
|
||||
The \texttt{HeightFieldShape} is a collision shape that can be used to represent a static terrain for instance. You can
|
||||
define a heightfield with a two dimensional grid that has a given height value at each point. \\
|
||||
|
||||
In order to create a \texttt{HeightFieldShape}, you need to have an array with all the height values of your field.
|
||||
You can have height values of type int, float or double. You need to give the number of rows and columns of your two
|
||||
dimensional grid. Note that the height values in your array must be organized such that the value at row
|
||||
\texttt{indexRow} and column \texttt{indexColumn} is located at the following position in the array:
|
||||
|
||||
\begin{lstlisting}
|
||||
heighFieldValues[indexRow * nbColumns + indexColumn]
|
||||
\end{lstlisting}
|
||||
|
||||
\vspace{0.6cm}
|
||||
|
||||
Morevover, you need to provide the minimum and maximum height values of your height field. \\
|
||||
|
||||
Here is an example that shows how to create a \texttt{HeightFieldShape}: \\
|
||||
|
||||
\begin{lstlisting}
|
||||
const int nbRows = 40;
|
||||
const int nbColumns = 50;
|
||||
float minHeight = 100;
|
||||
float maxHeight = 500;
|
||||
|
||||
// Height values
|
||||
float heightValues[nbRows * nbColumns] = ...;
|
||||
|
||||
// Create the heightfield collision shape
|
||||
rp3d::HeightFieldShape = new rp3d::HeightFieldShape(nbColumns, nbRows, minHeight, maxHeight, heightValues,
|
||||
rp3d::HeightFieldShape::HEIGHT_FLOAT_TYPE);
|
||||
\end{lstlisting}
|
||||
|
||||
\vspace{0.6cm}
|
||||
|
||||
Note that the array of height values is not copied into the \texttt{HeightFieldShape}. Therefore, you need to make sure
|
||||
it exists during the lifetime of the \texttt{HeightFieldShape} and you must not forget to release its memory when you
|
||||
destroy the collision shape or at the end of your application. \\
|
||||
|
||||
When creating a \texttt{HeightFieldShape}, the origin of the shape will be at the center of its bounding volume.
|
||||
Therefore, if you create a \texttt{HeightFieldShape} with a minimum height of 100 and a maximum height of 500, the
|
||||
maximum coordinates of the shape on the Y axis will be 200 and the minimum coordinates will be -200.
|
||||
|
||||
\subsection{Adding a Collision Shape to a body - The Proxy Shape concept}
|
||||
|
||||
\begin{sloppypar}
|
||||
Now that you know how to create a collision shape, we will see how to add it to a given body. \\
|
||||
|
||||
First, note that when you add a collision shape to a body, the collision shape object that you gave as a parameter
|
||||
will be copied internally. Therefore, you can destroy the collision shape object right after it has been added to the body. \\
|
||||
First note that when you add a collision shape to a body, the shape will not be copied internally. You only give a
|
||||
pointer to the shape in parameter. The shape must exist during the whole lifetime of the body. This way, you can
|
||||
create a collision shape and reuse it for multiple bodies. You are also responsible to destroy the shape at the
|
||||
end when the bodies are not used anymore. \\
|
||||
|
||||
In order to add a collision shape to a body, you need to use the \texttt{CollisionBody::addCollisionShape()} method for a Collision Body and the
|
||||
\texttt{RigidBody::addCollisionShape()} method for a Rigid Body. You will have to provide the collision shape transform in parameter. This is the
|
||||
|
@ -890,8 +996,6 @@ collisionShape.setIsEdgesInformationUsed(true);
|
|||
You can use the returned Proxy Shape to get or set parameters of the given collision shape in that particular body. This concept is also called \emph{fixture} in some
|
||||
other physics engines. In ReactPhysics3D, a Proxy Shape is represented by the \texttt{ProxyShape} class. \\
|
||||
|
||||
When you create a collision shape, you can add it to multiple bodies. You do not need to create several times the same collision shape. \\
|
||||
|
||||
The following example shows how to add a sphere collision shape with a given mass to a rigid body and also how to remove it from the body using the Proxy Shape pointer. \\
|
||||
\end{sloppypar}
|
||||
|
||||
|
@ -909,7 +1013,7 @@ rp3d::decimal mass = rp3d::decimal(4.0);
|
|||
|
||||
// Add the collision shape to the rigid body
|
||||
rp3d::ProxyShape* proxyShape;
|
||||
proxyShape = body->addCollisionShape(shape, transform, mass);
|
||||
proxyShape = body->addCollisionShape(&shape, transform, mass);
|
||||
|
||||
// If you want to remove the collision shape from the body
|
||||
// at some point, you need to use the proxy shape
|
||||
|
@ -1456,45 +1560,56 @@ bool isHit = proxyShape->raycast(ray, raycastInfo);
|
|||
|
||||
\vspace{0.6cm}
|
||||
|
||||
\section{Examples}
|
||||
\label{sec:examples}
|
||||
\section{Testbed application}
|
||||
\label{sec:testbed}
|
||||
|
||||
You can find some demos in the \texttt{examples/} folder of
|
||||
the ReactPhysics3D library. Follow the instructions described in section \ref{sec:building} to
|
||||
compile the examples. Note that OpenGL and the GLEW library are required to run those examples. Studying the examples is a
|
||||
good way to understand how to use the ReactPhysics3D library. \\
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics{testbed.png}
|
||||
\label{fig:testbed}
|
||||
\end{figure}
|
||||
|
||||
All the examples require some command line arguments to be able to run them. Do not forget to set them in your IDE (Visual Studio, XCode, \dots) or to
|
||||
specify them when you run the example in command line. You can find the command line arguments to use for each example bellow.
|
||||
The testbed application is a graphical interface where you can select and see some demo scenes using the
|
||||
ReactPhysics3D library. \\
|
||||
|
||||
\subsection{Cubes}
|
||||
Follow the instructions described in section \ref{sec:building} to
|
||||
compile the testbed application. Note that OpenGL is required to compile it. \\
|
||||
|
||||
Command line arguments: shaders/ \\
|
||||
The testbed application can be found in the \texttt{testbed/} folder of
|
||||
the ReactPhysics3D library. Do not hesitate to take a look at the code of the demo scenes to better understand how
|
||||
to use the library in your application. \\
|
||||
|
||||
In this example, you will see how to create a floor and some cubes using the Box Shape for collision detection. Because of gravity,
|
||||
the cubes will fall down on the floor. After falling down, the cubes will come to rest and start sleeping (become inactive). In this demo,
|
||||
the cubes are green when they are active and become red as they get inactive (sleeping).
|
||||
The following subsections describe the demo scenes that can be found in the testbed application.
|
||||
|
||||
\subsection{Collision Shapes}
|
||||
\subsection{Cubes Scene}
|
||||
|
||||
Command line arguments: shaders/ meshes/ \\
|
||||
|
||||
In this example, you will see how to create a floor (using the Box Shape) and some other bodies using the different collision shapes available
|
||||
in the ReactPhysics3D library like Cylinders, Capsules, Spheres, Convex Meshes and Cones. Those bodies will fall down to the floor.
|
||||
In this scene, you will see how to create a floor and some cubes using the Box Shape for collision detection. Because of gravity,
|
||||
the cubes will fall down on the floor. After falling down, the cubes will come to rest and start sleeping (become inactive). In this scene,
|
||||
the cubes will become red as they get inactive (sleeping).
|
||||
|
||||
\subsection{Joints}
|
||||
|
||||
Command line arguments: shaders/ \\
|
||||
|
||||
In this example, you will learn how to create different joints (Ball and Socket, Hinge, Slider, Fixed) into the dynamics world. You can also see how
|
||||
In this scene, you will learn how to create different joints (Ball and Socket, Hinge, Slider, Fixed) into the dynamics world. You can also see how
|
||||
to set the motor or limits of the joints.
|
||||
|
||||
\subsection{Raycast}
|
||||
\subsection{Collision Shapes Scene}
|
||||
|
||||
Command line arguments: shaders/ meshes/ \\
|
||||
In this scene, you will see how to create a floor (using the Box Shape) and some other bodies using the different collision shapes available
|
||||
in the ReactPhysics3D library like Cylinders, Capsules, Spheres, Convex Meshes and Cones. Those bodies will fall down to the floor.
|
||||
|
||||
In this example, you will see how to use the ray casting methods of the library. Several rays are thrown against the different collision shapes.
|
||||
It is possible to switch from a collision shape to another using the space key.
|
||||
\subsection{Heightfield Scene}
|
||||
|
||||
In this scene, you will see how to use the Height field collision shape of the library. Several cubes will fall
|
||||
down to the height field.
|
||||
|
||||
\subsection{Raycast Scene}
|
||||
|
||||
In this scene, you will see how to use the ray casting methods of the library. Several rays are thrown against the different collision shapes.
|
||||
It is possible to switch from a collision shape to another using the spacebar key.
|
||||
|
||||
\subsection{Concave Mesh Scene}
|
||||
|
||||
In this scene, you will see how to use the static concave mesh collision shape of the library.
|
||||
|
||||
\section{Retrieving contacts}
|
||||
|
||||
|
|
BIN
documentation/UserManual/images/concavemeshshape.png
Normal file
BIN
documentation/UserManual/images/concavemeshshape.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
BIN
documentation/UserManual/images/heightfieldshape.png
Normal file
BIN
documentation/UserManual/images/heightfieldshape.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 106 KiB |
BIN
documentation/UserManual/images/testbed.png
Normal file
BIN
documentation/UserManual/images/testbed.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 114 KiB |
|
@ -10,7 +10,7 @@
|
|||
\vskip 1.3cm
|
||||
{\Huge \@title\par}%
|
||||
\vskip 0.3cm
|
||||
{\Large Version: 0.5.0\par}%
|
||||
{\Large Version: 0.6.0\par}%
|
||||
\vskip 0.3cm
|
||||
{\Large \@author\par}%
|
||||
\vskip 2cm
|
||||
|
|
Loading…
Reference in New Issue
Block a user