Modifications in the examples

This commit is contained in:
Daniel Chappuis 2013-07-02 23:14:08 +02:00
parent d58db2e6f2
commit 501b0747d3
23 changed files with 2325 additions and 55 deletions

View File

@ -4,3 +4,4 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
add_subdirectory(common/)
add_subdirectory(fallingcubes/)
add_subdirectory(joints/)
add_subdirectory(convexmesh/)

View File

@ -105,13 +105,21 @@ Box::~Box() {
}
// Render the cube at the correct position and with the correct orientation
void Box::render(openglframework::Shader& shader) {
void Box::render(openglframework::Shader& shader,
const openglframework::Matrix4& worldToCameraMatrix) {
// Bind the shader
shader.bind();
// Set the model to World matrix
shader.setMatrix4x4Uniform("modelToWorldMatrix", mTransformMatrix);
// Set the model to camera matrix
const openglframework::Matrix4 localToCameraMatrix = worldToCameraMatrix * mTransformMatrix;
shader.setMatrix4x4Uniform("localToCameraMatrix", localToCameraMatrix);
// Set the normal matrix (inverse transpose of the 3x3 upper-left sub matrix of the
// model-view matrix)
const openglframework::Matrix3 normalMatrix =
localToCameraMatrix.getUpperLeft3x3Matrix().getInverse().getTranspose();
shader.setMatrix3x3Uniform("normalMatrix", normalMatrix);
// Bind the vertices VBO
mVBOVertices.bind();

View File

@ -97,7 +97,7 @@ class Box : public openglframework::Object3D {
void updateTransform();
/// Render the cube at the correct position and with the correct orientation
void render(openglframework::Shader& shader);
void render(openglframework::Shader& shader, const openglframework::Matrix4& worldToCameraMatrix);
};
// Return a pointer to the rigid body of the box

136
examples/common/Cone.cpp Normal file
View File

@ -0,0 +1,136 @@
/********************************************************************************
* ReactPhysics3D physics library, http://code.google.com/p/reactphysics3d/ *
* Copyright (c) 2010-2013 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
* In no event will the authors be held liable for any damages arising from the *
* use of this software. *
* *
* Permission is granted to anyone to use this software for any purpose, *
* including commercial applications, and to alter it and redistribute it *
* freely, subject to the following restrictions: *
* *
* 1. The origin of this software must not be misrepresented; you must not claim *
* that you wrote the original software. If you use this software in a *
* product, an acknowledgment in the product documentation would be *
* appreciated but is not required. *
* *
* 2. Altered source versions must be plainly marked as such, and must not be *
* misrepresented as being the original software. *
* *
* 3. This notice may not be removed or altered from any source distribution. *
* *
********************************************************************************/
// Libraries
#include "Cone.h"
// Constructor
Cone::Cone(float radius, float height, const openglframework::Vector3 &position,
float mass, reactphysics3d::DynamicsWorld* dynamicsWorld)
: openglframework::Mesh(), mRadius(radius), mHeight(height) {
// Load the mesh from a file
openglframework::MeshReaderWriter::loadMeshFromFile("meshes/cone.obj", *this);
// Calculate the normals of the mesh
calculateNormals();
// Compute the scaling matrix
mScalingMatrix = openglframework::Matrix4(mRadius, 0, 0, 0,
0, mHeight, 0, 0,
0, 0, mRadius, 0,
0, 0, 0, 1);
// Initialize the position where the cone will be rendered
translateWorld(position);
// Create the collision shape for the rigid body (cone shape)
// ReactPhysics3D will clone this object to create an internal one. Therefore,
// it is OK if this object is destroy right after calling Dynamics::createRigidBody()
const rp3d::ConeShape collisionShape(mRadius, mHeight);
// Compute the inertia tensor of the body using its collision shape
rp3d::Matrix3x3 inertiaTensor;
collisionShape.computeLocalInertiaTensor(inertiaTensor, mass);
// Initial position and orientation of the rigid body
rp3d::Vector3 initPosition(position.x, position.y, position.z);
rp3d::Quaternion initOrientation = rp3d::Quaternion::identity();
rp3d::Transform transform(initPosition, initOrientation);
// Create a rigid body corresponding to the cone in the dynamics world
mRigidBody = dynamicsWorld->createRigidBody(transform, mass, inertiaTensor, collisionShape);
}
// Destructor
Cone::~Cone() {
// Destroy the mesh
destroy();
}
// Render the cone at the correct position and with the correct orientation
void Cone::render(openglframework::Shader& shader,
const openglframework::Matrix4& worldToCameraMatrix) {
// Bind the shader
shader.bind();
// Set the model to camera matrix
const openglframework::Matrix4 localToCameraMatrix = worldToCameraMatrix * mTransformMatrix;
shader.setMatrix4x4Uniform("localToCameraMatrix", localToCameraMatrix);
// Set the normal matrix (inverse transpose of the 3x3 upper-left sub matrix of the
// model-view matrix)
const openglframework::Matrix3 normalMatrix =
localToCameraMatrix.getUpperLeft3x3Matrix().getInverse().getTranspose();
shader.setMatrix3x3Uniform("normalMatrix", normalMatrix);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
if (hasTexture()) {
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
}
glVertexPointer(3, GL_FLOAT, 0, getVerticesPointer());
glNormalPointer(GL_FLOAT, 0, getNormalsPointer());
if(hasTexture()) {
glTexCoordPointer(2, GL_FLOAT, 0, getUVTextureCoordinatesPointer());
}
// For each part of the mesh
for (unsigned int i=0; i<getNbParts(); i++) {
glDrawElements(GL_TRIANGLES, getNbFaces(i) * 3,
GL_UNSIGNED_INT, getIndicesPointer());
}
glDisableClientState(GL_NORMAL_ARRAY);
glDisableClientState(GL_VERTEX_ARRAY);
if (hasTexture()) {
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
}
// Unbind the shader
shader.unbind();
}
// Update the transform matrix of the cone
void Cone::updateTransform() {
// Get the interpolated transform of the rigid body
rp3d::Transform transform = mRigidBody->getInterpolatedTransform();
// Compute the transform used for rendering the cone
float matrix[16];
transform.getOpenGLMatrix(matrix);
openglframework::Matrix4 newMatrix(matrix[0], matrix[4], matrix[8], matrix[12],
matrix[1], matrix[5], matrix[9], matrix[13],
matrix[2], matrix[6], matrix[10], matrix[14],
matrix[3], matrix[7], matrix[11], matrix[15]);
// Apply the scaling matrix to have the correct cone dimensions
mTransformMatrix = newMatrix * mScalingMatrix;
}

81
examples/common/Cone.h Normal file
View File

@ -0,0 +1,81 @@
/********************************************************************************
* ReactPhysics3D physics library, http://code.google.com/p/reactphysics3d/ *
* Copyright (c) 2010-2013 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
* In no event will the authors be held liable for any damages arising from the *
* use of this software. *
* *
* Permission is granted to anyone to use this software for any purpose, *
* including commercial applications, and to alter it and redistribute it *
* freely, subject to the following restrictions: *
* *
* 1. The origin of this software must not be misrepresented; you must not claim *
* that you wrote the original software. If you use this software in a *
* product, an acknowledgment in the product documentation would be *
* appreciated but is not required. *
* *
* 2. Altered source versions must be plainly marked as such, and must not be *
* misrepresented as being the original software. *
* *
* 3. This notice may not be removed or altered from any source distribution. *
* *
********************************************************************************/
#ifndef CONE_H
#define CONE_H
// Libraries
#include "openglframework.h"
#include "reactphysics3d.h"
// Class Cone
class Cone : public openglframework::Mesh {
private :
// -------------------- Attributes -------------------- //
/// Radius of the cone
float mRadius;
/// Height of the cone
float mHeight;
/// Rigid body used to simulate the dynamics of the cone
rp3d::RigidBody* mRigidBody;
/// Scaling matrix (applied to a sphere to obtain the correct cone dimensions)
openglframework::Matrix4 mScalingMatrix;
// -------------------- Methods -------------------- //
public :
// -------------------- Methods -------------------- //
/// Constructor
Cone(float radius, float height, const openglframework::Vector3& position,
float mass, rp3d::DynamicsWorld* dynamicsWorld);
/// Destructor
~Cone();
/// Return a pointer to the rigid body of the cone
rp3d::RigidBody* getRigidBody();
/// Update the transform matrix of the cone
void updateTransform();
/// Render the cone at the correct position and with the correct orientation
void render(openglframework::Shader& shader,
const openglframework::Matrix4& worldToCameraMatrix);
};
// Return a pointer to the rigid body of the cone
inline rp3d::RigidBody* Cone::getRigidBody() {
return mRigidBody;
}
#endif

View File

@ -0,0 +1,136 @@
/********************************************************************************
* ReactPhysics3D physics library, http://code.google.com/p/reactphysics3d/ *
* Copyright (c) 2010-2013 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
* In no event will the authors be held liable for any damages arising from the *
* use of this software. *
* *
* Permission is granted to anyone to use this software for any purpose, *
* including commercial applications, and to alter it and redistribute it *
* freely, subject to the following restrictions: *
* *
* 1. The origin of this software must not be misrepresented; you must not claim *
* that you wrote the original software. If you use this software in a *
* product, an acknowledgment in the product documentation would be *
* appreciated but is not required. *
* *
* 2. Altered source versions must be plainly marked as such, and must not be *
* misrepresented as being the original software. *
* *
* 3. This notice may not be removed or altered from any source distribution. *
* *
********************************************************************************/
// Libraries
#include "Cylinder.h"
// Constructor
Cylinder::Cylinder(float radius, float height, const openglframework::Vector3 &position,
float mass, reactphysics3d::DynamicsWorld* dynamicsWorld)
: openglframework::Mesh(), mRadius(radius), mHeight(height) {
// Load the mesh from a file
openglframework::MeshReaderWriter::loadMeshFromFile("meshes/cylinder.obj", *this);
// Calculate the normals of the mesh
calculateNormals();
// Compute the scaling matrix
mScalingMatrix = openglframework::Matrix4(mRadius, 0, 0, 0,
0, mHeight, 0, 0,
0, 0, mRadius, 0,
0, 0, 0, 1);
// Initialize the position where the cylinder will be rendered
translateWorld(position);
// Create the collision shape for the rigid body (cylinder shape)
// ReactPhysics3D will clone this object to create an internal one. Therefore,
// it is OK if this object is destroy right after calling Dynamics::createRigidBody()
const rp3d::CylinderShape collisionShape(mRadius, mHeight);
// Compute the inertia tensor of the body using its collision shape
rp3d::Matrix3x3 inertiaTensor;
collisionShape.computeLocalInertiaTensor(inertiaTensor, mass);
// Initial position and orientation of the rigid body
rp3d::Vector3 initPosition(position.x, position.y, position.z);
rp3d::Quaternion initOrientation = rp3d::Quaternion::identity();
rp3d::Transform transform(initPosition, initOrientation);
// Create a rigid body corresponding to the cylinder in the dynamics world
mRigidBody = dynamicsWorld->createRigidBody(transform, mass, inertiaTensor, collisionShape);
}
// Destructor
Cylinder::~Cylinder() {
// Destroy the mesh
destroy();
}
// Render the cylinder at the correct position and with the correct orientation
void Cylinder::render(openglframework::Shader& shader,
const openglframework::Matrix4& worldToCameraMatrix) {
// Bind the shader
shader.bind();
// Set the model to camera matrix
const openglframework::Matrix4 localToCameraMatrix = worldToCameraMatrix * mTransformMatrix;
shader.setMatrix4x4Uniform("localToCameraMatrix", localToCameraMatrix);
// Set the normal matrix (inverse transpose of the 3x3 upper-left sub matrix of the
// model-view matrix)
const openglframework::Matrix3 normalMatrix =
localToCameraMatrix.getUpperLeft3x3Matrix().getInverse().getTranspose();
shader.setMatrix3x3Uniform("normalMatrix", normalMatrix);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
if (hasTexture()) {
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
}
glVertexPointer(3, GL_FLOAT, 0, getVerticesPointer());
glNormalPointer(GL_FLOAT, 0, getNormalsPointer());
if(hasTexture()) {
glTexCoordPointer(2, GL_FLOAT, 0, getUVTextureCoordinatesPointer());
}
// For each part of the mesh
for (unsigned int i=0; i<getNbParts(); i++) {
glDrawElements(GL_TRIANGLES, getNbFaces(i) * 3,
GL_UNSIGNED_INT, getIndicesPointer());
}
glDisableClientState(GL_NORMAL_ARRAY);
glDisableClientState(GL_VERTEX_ARRAY);
if (hasTexture()) {
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
}
// Unbind the shader
shader.unbind();
}
// Update the transform matrix of the cylinder
void Cylinder::updateTransform() {
// Get the interpolated transform of the rigid body
rp3d::Transform transform = mRigidBody->getInterpolatedTransform();
// Compute the transform used for rendering the cylinder
float matrix[16];
transform.getOpenGLMatrix(matrix);
openglframework::Matrix4 newMatrix(matrix[0], matrix[4], matrix[8], matrix[12],
matrix[1], matrix[5], matrix[9], matrix[13],
matrix[2], matrix[6], matrix[10], matrix[14],
matrix[3], matrix[7], matrix[11], matrix[15]);
// Apply the scaling matrix to have the correct cylinder dimensions
mTransformMatrix = newMatrix * mScalingMatrix;
}

View File

@ -0,0 +1,81 @@
/********************************************************************************
* ReactPhysics3D physics library, http://code.google.com/p/reactphysics3d/ *
* Copyright (c) 2010-2013 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
* In no event will the authors be held liable for any damages arising from the *
* use of this software. *
* *
* Permission is granted to anyone to use this software for any purpose, *
* including commercial applications, and to alter it and redistribute it *
* freely, subject to the following restrictions: *
* *
* 1. The origin of this software must not be misrepresented; you must not claim *
* that you wrote the original software. If you use this software in a *
* product, an acknowledgment in the product documentation would be *
* appreciated but is not required. *
* *
* 2. Altered source versions must be plainly marked as such, and must not be *
* misrepresented as being the original software. *
* *
* 3. This notice may not be removed or altered from any source distribution. *
* *
********************************************************************************/
#ifndef CYLINDER_H
#define CYLINDER_H
// Libraries
#include "openglframework.h"
#include "reactphysics3d.h"
// Class Cylinder
class Cylinder : public openglframework::Mesh {
private :
// -------------------- Attributes -------------------- //
/// Radius of the cylinder
float mRadius;
/// Height of the cylinder
float mHeight;
/// Rigid body used to simulate the dynamics of the cylinder
rp3d::RigidBody* mRigidBody;
/// Scaling matrix (applied to a sphere to obtain the correct cylinder dimensions)
openglframework::Matrix4 mScalingMatrix;
// -------------------- Methods -------------------- //
public :
// -------------------- Methods -------------------- //
/// Constructor
Cylinder(float radius, float height, const openglframework::Vector3& position,
float mass, rp3d::DynamicsWorld* dynamicsWorld);
/// Destructor
~Cylinder();
/// Return a pointer to the rigid body of the cylinder
rp3d::RigidBody* getRigidBody();
/// Update the transform matrix of the cylinder
void updateTransform();
/// Render the cylinder at the correct position and with the correct orientation
void render(openglframework::Shader& shader,
const openglframework::Matrix4& worldToCameraMatrix);
};
// Return a pointer to the rigid body of the cylinder
inline rp3d::RigidBody* Cylinder::getRigidBody() {
return mRigidBody;
}
#endif

136
examples/common/Sphere.cpp Normal file
View File

@ -0,0 +1,136 @@
/********************************************************************************
* ReactPhysics3D physics library, http://code.google.com/p/reactphysics3d/ *
* Copyright (c) 2010-2013 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
* In no event will the authors be held liable for any damages arising from the *
* use of this software. *
* *
* Permission is granted to anyone to use this software for any purpose, *
* including commercial applications, and to alter it and redistribute it *
* freely, subject to the following restrictions: *
* *
* 1. The origin of this software must not be misrepresented; you must not claim *
* that you wrote the original software. If you use this software in a *
* product, an acknowledgment in the product documentation would be *
* appreciated but is not required. *
* *
* 2. Altered source versions must be plainly marked as such, and must not be *
* misrepresented as being the original software. *
* *
* 3. This notice may not be removed or altered from any source distribution. *
* *
********************************************************************************/
// Libraries
#include "Sphere.h"
// Constructor
Sphere::Sphere(float radius, const openglframework::Vector3 &position,
float mass, reactphysics3d::DynamicsWorld* dynamicsWorld)
: openglframework::Mesh(), mRadius(radius) {
// Load the mesh from a file
openglframework::MeshReaderWriter::loadMeshFromFile("meshes/sphere.obj", *this);
// Calculate the normals of the mesh
calculateNormals();
// Compute the scaling matrix
mScalingMatrix = openglframework::Matrix4(mRadius, 0, 0, 0,
0, mRadius, 0, 0,
0, 0, mRadius, 0,
0, 0, 0, 1);
// Initialize the position where the sphere will be rendered
translateWorld(position);
// Create the collision shape for the rigid body (sphere shape)
// ReactPhysics3D will clone this object to create an internal one. Therefore,
// it is OK if this object is destroy right after calling Dynamics::createRigidBody()
const rp3d::SphereShape collisionShape(mRadius);
// Compute the inertia tensor of the body using its collision shape
rp3d::Matrix3x3 inertiaTensor;
collisionShape.computeLocalInertiaTensor(inertiaTensor, mass);
// Initial position and orientation of the rigid body
rp3d::Vector3 initPosition(position.x, position.y, position.z);
rp3d::Quaternion initOrientation = rp3d::Quaternion::identity();
rp3d::Transform transform(initPosition, initOrientation);
// Create a rigid body corresponding to the sphere in the dynamics world
mRigidBody = dynamicsWorld->createRigidBody(transform, mass, inertiaTensor, collisionShape);
}
// Destructor
Sphere::~Sphere() {
// Destroy the mesh
destroy();
}
// Render the sphere at the correct position and with the correct orientation
void Sphere::render(openglframework::Shader& shader,
const openglframework::Matrix4& worldToCameraMatrix) {
// Bind the shader
shader.bind();
// Set the model to camera matrix
const openglframework::Matrix4 localToCameraMatrix = worldToCameraMatrix * mTransformMatrix;
shader.setMatrix4x4Uniform("localToCameraMatrix", localToCameraMatrix);
// Set the normal matrix (inverse transpose of the 3x3 upper-left sub matrix of the
// model-view matrix)
const openglframework::Matrix3 normalMatrix =
localToCameraMatrix.getUpperLeft3x3Matrix().getInverse().getTranspose();
shader.setMatrix3x3Uniform("normalMatrix", normalMatrix);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
if (hasTexture()) {
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
}
glVertexPointer(3, GL_FLOAT, 0, getVerticesPointer());
glNormalPointer(GL_FLOAT, 0, getNormalsPointer());
if(hasTexture()) {
glTexCoordPointer(2, GL_FLOAT, 0, getUVTextureCoordinatesPointer());
}
// For each part of the mesh
for (unsigned int i=0; i<getNbParts(); i++) {
glDrawElements(GL_TRIANGLES, getNbFaces(i) * 3,
GL_UNSIGNED_INT, getIndicesPointer());
}
glDisableClientState(GL_NORMAL_ARRAY);
glDisableClientState(GL_VERTEX_ARRAY);
if (hasTexture()) {
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
}
// Unbind the shader
shader.unbind();
}
// Update the transform matrix of the sphere
void Sphere::updateTransform() {
// Get the interpolated transform of the rigid body
rp3d::Transform transform = mRigidBody->getInterpolatedTransform();
// Compute the transform used for rendering the sphere
float matrix[16];
transform.getOpenGLMatrix(matrix);
openglframework::Matrix4 newMatrix(matrix[0], matrix[4], matrix[8], matrix[12],
matrix[1], matrix[5], matrix[9], matrix[13],
matrix[2], matrix[6], matrix[10], matrix[14],
matrix[3], matrix[7], matrix[11], matrix[15]);
// Apply the scaling matrix to have the correct sphere dimensions
mTransformMatrix = newMatrix * mScalingMatrix;
}

78
examples/common/Sphere.h Normal file
View File

@ -0,0 +1,78 @@
/********************************************************************************
* ReactPhysics3D physics library, http://code.google.com/p/reactphysics3d/ *
* Copyright (c) 2010-2013 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
* In no event will the authors be held liable for any damages arising from the *
* use of this software. *
* *
* Permission is granted to anyone to use this software for any purpose, *
* including commercial applications, and to alter it and redistribute it *
* freely, subject to the following restrictions: *
* *
* 1. The origin of this software must not be misrepresented; you must not claim *
* that you wrote the original software. If you use this software in a *
* product, an acknowledgment in the product documentation would be *
* appreciated but is not required. *
* *
* 2. Altered source versions must be plainly marked as such, and must not be *
* misrepresented as being the original software. *
* *
* 3. This notice may not be removed or altered from any source distribution. *
* *
********************************************************************************/
#ifndef SPHERE_H
#define SPHERE_H
// Libraries
#include "openglframework.h"
#include "reactphysics3d.h"
// Class Sphere
class Sphere : public openglframework::Mesh {
private :
// -------------------- Attributes -------------------- //
/// Radius of the sphere
float mRadius;
/// Rigid body used to simulate the dynamics of the sphere
rp3d::RigidBody* mRigidBody;
/// Scaling matrix (applied to a sphere to obtain the correct sphere dimensions)
openglframework::Matrix4 mScalingMatrix;
// -------------------- Methods -------------------- //
public :
// -------------------- Methods -------------------- //
/// Constructor
Sphere(float radius, const openglframework::Vector3& position,
float mass, rp3d::DynamicsWorld* dynamicsWorld);
/// Destructor
~Sphere();
/// Return a pointer to the rigid body of the sphere
rp3d::RigidBody* getRigidBody();
/// Update the transform matrix of the sphere
void updateTransform();
/// Render the sphere at the correct position and with the correct orientation
void render(openglframework::Shader& shader,
const openglframework::Matrix4& worldToCameraMatrix);
};
// Return a pointer to the rigid body of the sphere
inline rp3d::RigidBody* Sphere::getRigidBody() {
return mRigidBody;
}
#endif

View File

@ -0,0 +1,115 @@
/********************************************************************************
* ReactPhysics3D physics library, http://code.google.com/p/reactphysics3d/ *
* Copyright (c) 2010-2013 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
* In no event will the authors be held liable for any damages arising from the *
* use of this software. *
* *
* Permission is granted to anyone to use this software for any purpose, *
* including commercial applications, and to alter it and redistribute it *
* freely, subject to the following restrictions: *
* *
* 1. The origin of this software must not be misrepresented; you must not claim *
* that you wrote the original software. If you use this software in a *
* product, an acknowledgment in the product documentation would be *
* appreciated but is not required. *
* *
* 2. Altered source versions must be plainly marked as such, and must not be *
* misrepresented as being the original software. *
* *
* 3. This notice may not be removed or altered from any source distribution. *
* *
********************************************************************************/
// Libraries
#include "VisualContactPoint.h"
// Initialization of static variables
int VisualContactPoint::mNbTotalPoints = 0;
bool VisualContactPoint::mIsMeshInitialized = false;
openglframework::Mesh VisualContactPoint::mMesh;
// Constructor
VisualContactPoint::VisualContactPoint(const openglframework::Vector3 &position) {
assert(mIsMeshInitialized);
// Initialize the position where the sphere will be rendered
translateWorld(position);
}
// Destructor
VisualContactPoint::~VisualContactPoint() {
}
// Load and initialize the mesh for all the contact points
void VisualContactPoint::createStaticData() {
if (!mIsMeshInitialized) {
// Load the mesh from a file
openglframework::MeshReaderWriter::loadMeshFromFile("meshes/sphere.obj", mMesh);
// Calculate the normals of the mesh
mMesh.calculateNormals();
mMesh.scaleVertices(VISUAL_CONTACT_POINT_RADIUS);
mIsMeshInitialized = true;
}
}
// Destroy the mesh for the contact points
void VisualContactPoint::destroyStaticData() {
mMesh.destroy();
mIsMeshInitialized = false;
}
// Render the sphere at the correct position and with the correct orientation
void VisualContactPoint::render(openglframework::Shader& shader,
const openglframework::Matrix4& worldToCameraMatrix) {
// Bind the shader
shader.bind();
// Set the model to camera matrix
const openglframework::Matrix4 localToCameraMatrix = worldToCameraMatrix * mTransformMatrix;
shader.setMatrix4x4Uniform("localToCameraMatrix", localToCameraMatrix);
// Set the normal matrix (inverse transpose of the 3x3 upper-left sub matrix of the
// model-view matrix)
const openglframework::Matrix3 normalMatrix =
localToCameraMatrix.getUpperLeft3x3Matrix().getInverse().getTranspose();
shader.setMatrix3x3Uniform("normalMatrix", normalMatrix);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
if (mMesh.hasTexture()) {
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
}
glVertexPointer(3, GL_FLOAT, 0, mMesh.getVerticesPointer());
glNormalPointer(GL_FLOAT, 0, mMesh.getNormalsPointer());
if(mMesh.hasTexture()) {
glTexCoordPointer(2, GL_FLOAT, 0, mMesh.getUVTextureCoordinatesPointer());
}
// For each part of the mesh
for (unsigned int i=0; i<mMesh.getNbParts(); i++) {
glDrawElements(GL_TRIANGLES, mMesh.getNbFaces(i) * 3,
GL_UNSIGNED_INT, mMesh.getIndicesPointer());
}
glDisableClientState(GL_NORMAL_ARRAY);
glDisableClientState(GL_VERTEX_ARRAY);
if (mMesh.hasTexture()) {
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
}
// Unbind the shader
shader.unbind();
}

View File

@ -0,0 +1,73 @@
/********************************************************************************
* ReactPhysics3D physics library, http://code.google.com/p/reactphysics3d/ *
* Copyright (c) 2010-2013 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
* In no event will the authors be held liable for any damages arising from the *
* use of this software. *
* *
* Permission is granted to anyone to use this software for any purpose, *
* including commercial applications, and to alter it and redistribute it *
* freely, subject to the following restrictions: *
* *
* 1. The origin of this software must not be misrepresented; you must not claim *
* that you wrote the original software. If you use this software in a *
* product, an acknowledgment in the product documentation would be *
* appreciated but is not required. *
* *
* 2. Altered source versions must be plainly marked as such, and must not be *
* misrepresented as being the original software. *
* *
* 3. This notice may not be removed or altered from any source distribution. *
* *
********************************************************************************/
#ifndef VISUAL_CONTACT_POINT_H
#define VISUAL_CONTACT_POINT_H
// Libraries
#include "openglframework.h"
const float VISUAL_CONTACT_POINT_RADIUS = 0.1f;
// Class VisualContactPoint
class VisualContactPoint : public openglframework::Object3D {
private :
// -------------------- Attributes -------------------- //
/// Total number of existing contact points (static attribute)
static int mNbTotalPoints;
/// Sphere mesh for the visual contact point
static openglframework::Mesh mMesh;
/// True if the mesh has been initialized
static bool mIsMeshInitialized;
// -------------------- Methods -------------------- //
public :
// -------------------- Methods -------------------- //
/// Constructor
VisualContactPoint(const openglframework::Vector3& position);
/// Destructor
~VisualContactPoint();
/// Load and initialize the mesh for all the contact points
static void createStaticData();
/// Destroy the mesh for the contact points
static void destroyStaticData();
/// Render the sphere at the correct position and with the correct orientation
void render(openglframework::Shader& shader,
const openglframework::Matrix4& worldToCameraMatrix);
};
#endif

View File

@ -0,0 +1,101 @@
# Blender v2.66 (sub 0) OBJ File: ''
# www.blender.org
v 0.000000 -0.500000 0.000000
v 0.000000 -0.500000 -1.000000
v 0.195090 -0.500000 -0.980785
v 0.382683 -0.500000 -0.923880
v 0.555570 -0.500000 -0.831470
v 0.707107 -0.500000 -0.707107
v 0.831470 -0.500000 -0.555570
v 0.923880 -0.500000 -0.382683
v 0.980785 -0.500000 -0.195090
v 1.000000 -0.500000 -0.000000
v 0.000000 0.500000 0.000000
v 0.980785 -0.500000 0.195090
v 0.923880 -0.500000 0.382683
v 0.831470 -0.500000 0.555570
v 0.707107 -0.500000 0.707107
v 0.555570 -0.500000 0.831470
v 0.382683 -0.500000 0.923880
v 0.195090 -0.500000 0.980785
v -0.000000 -0.500000 1.000000
v -0.195091 -0.500000 0.980785
v -0.382684 -0.500000 0.923879
v -0.555571 -0.500000 0.831469
v -0.707107 -0.500000 0.707106
v -0.831470 -0.500000 0.555570
v -0.923880 -0.500000 0.382683
v -0.980785 -0.500000 0.195089
v -1.000000 -0.500000 -0.000001
v -0.980785 -0.500000 -0.195091
v -0.923879 -0.500000 -0.382684
v -0.831469 -0.500000 -0.555571
v -0.707106 -0.500000 -0.707108
v -0.555569 -0.500000 -0.831470
v -0.382682 -0.500000 -0.923880
v -0.195089 -0.500000 -0.980786
s off
f 1 2 3
f 1 3 4
f 1 4 5
f 1 5 6
f 1 6 7
f 1 7 8
f 1 8 9
f 1 9 10
f 1 10 12
f 1 12 13
f 1 13 14
f 1 14 15
f 1 15 16
f 1 16 17
f 1 17 18
f 1 18 19
f 1 19 20
f 1 20 21
f 1 21 22
f 1 22 23
f 1 23 24
f 1 24 25
f 1 25 26
f 1 26 27
f 1 27 28
f 1 28 29
f 1 29 30
f 1 30 31
f 1 31 32
f 1 32 33
f 1 33 34
f 1 34 2
f 2 11 3
f 3 11 4
f 4 11 5
f 5 11 6
f 6 11 7
f 7 11 8
f 8 11 9
f 9 11 10
f 10 11 12
f 12 11 13
f 13 11 14
f 14 11 15
f 15 11 16
f 16 11 17
f 17 11 18
f 18 11 19
f 19 11 20
f 20 11 21
f 21 11 22
f 22 11 23
f 23 11 24
f 24 11 25
f 25 11 26
f 26 11 27
f 27 11 28
f 28 11 29
f 29 11 30
f 30 11 31
f 31 11 32
f 32 11 33
f 33 11 34
f 34 11 2

View File

@ -0,0 +1,293 @@
# Blender v2.66 (sub 0) OBJ File: ''
# www.blender.org
v 0.000000 -0.500000 0.000000
v 0.000000 0.500000 0.000000
v 0.000000 -0.500000 -1.000000
v 0.000000 0.500000 -1.000000
v 0.195090 -0.500000 -0.980785
v 0.195090 0.500000 -0.980785
v 0.382683 -0.500000 -0.923880
v 0.382683 0.500000 -0.923880
v 0.555570 -0.500000 -0.831470
v 0.555570 0.500000 -0.831470
v 0.707107 -0.500000 -0.707107
v 0.707107 0.500000 -0.707107
v 0.831470 -0.500000 -0.555570
v 0.831470 0.500000 -0.555570
v 0.923880 -0.500000 -0.382683
v 0.923880 0.500000 -0.382683
v 0.980785 -0.500000 -0.195090
v 0.980785 0.500000 -0.195090
v 1.000000 -0.500000 -0.000000
v 1.000000 0.500000 -0.000000
v 0.980785 -0.500000 0.195090
v 0.980785 0.500000 0.195090
v 0.923880 -0.500000 0.382683
v 0.923880 0.500000 0.382683
v 0.831470 -0.500000 0.555570
v 0.831470 0.500000 0.555570
v 0.707107 -0.500000 0.707107
v 0.707107 0.500000 0.707107
v 0.555570 -0.500000 0.831470
v 0.555570 0.500000 0.831470
v 0.382683 -0.500000 0.923880
v 0.382683 0.500000 0.923880
v 0.195090 -0.500000 0.980785
v 0.195090 0.500000 0.980785
v -0.000000 -0.500000 1.000000
v -0.000000 0.500000 1.000000
v -0.195091 -0.500000 0.980785
v -0.195091 0.500000 0.980785
v -0.382684 -0.500000 0.923879
v -0.382684 0.500000 0.923879
v -0.555571 -0.500000 0.831469
v -0.555571 0.500000 0.831469
v -0.707107 -0.500000 0.707106
v -0.707107 0.500000 0.707106
v -0.831470 -0.500000 0.555570
v -0.831470 0.500000 0.555570
v -0.923880 -0.500000 0.382683
v -0.923880 0.500000 0.382683
v -0.980785 -0.500000 0.195089
v -0.980785 0.500000 0.195089
v -1.000000 -0.500000 -0.000001
v -1.000000 0.500000 -0.000001
v -0.980785 -0.500000 -0.195091
v -0.980785 0.500000 -0.195091
v -0.923879 -0.500000 -0.382684
v -0.923879 0.500000 -0.382684
v -0.831469 -0.500000 -0.555571
v -0.831469 0.500000 -0.555571
v -0.707106 -0.500000 -0.707108
v -0.707106 0.500000 -0.707108
v -0.555569 -0.500000 -0.831470
v -0.555569 0.500000 -0.831470
v -0.382682 -0.500000 -0.923880
v -0.382682 0.500000 -0.923880
v -0.195089 -0.500000 -0.980786
v -0.195089 0.500000 -0.980786
v 0.000000 0.000000 -1.000000
v 0.195090 0.000000 -0.980785
v 0.382683 0.000000 -0.923880
v 0.555570 0.000000 -0.831470
v 0.707107 0.000000 -0.707107
v 0.831470 0.000000 -0.555570
v 0.923880 0.000000 -0.382683
v 0.980785 0.000000 -0.195090
v 1.000000 0.000000 -0.000000
v 0.980785 0.000000 0.195090
v 0.923880 0.000000 0.382683
v 0.831470 0.000000 0.555570
v 0.707107 0.000000 0.707107
v 0.555570 0.000000 0.831470
v 0.382683 0.000000 0.923880
v 0.195090 0.000000 0.980785
v -0.000000 0.000000 1.000000
v -0.195091 0.000000 0.980785
v -0.382684 0.000000 0.923879
v -0.555571 0.000000 0.831469
v -0.707107 0.000000 0.707106
v -0.831470 0.000000 0.555570
v -0.923880 0.000000 0.382683
v -0.980785 0.000000 0.195089
v -1.000000 0.000000 -0.000001
v -0.980785 0.000000 -0.195091
v -0.923879 0.000000 -0.382684
v -0.831469 0.000000 -0.555571
v -0.707106 0.000000 -0.707108
v -0.555569 0.000000 -0.831470
v -0.382682 0.000000 -0.923880
v -0.195089 0.000000 -0.980786
s off
f 1 3 5
f 2 6 4
f 67 4 6
f 1 5 7
f 2 8 6
f 68 6 8
f 1 7 9
f 2 10 8
f 69 8 10
f 1 9 11
f 2 12 10
f 70 10 12
f 1 11 13
f 2 14 12
f 71 12 14
f 1 13 15
f 2 16 14
f 72 14 16
f 1 15 17
f 2 18 16
f 73 16 18
f 1 17 19
f 2 20 18
f 74 18 20
f 1 19 21
f 2 22 20
f 75 20 22
f 1 21 23
f 2 24 22
f 76 22 24
f 1 23 25
f 2 26 24
f 77 24 26
f 1 25 27
f 2 28 26
f 78 26 28
f 1 27 29
f 2 30 28
f 79 28 30
f 1 29 31
f 2 32 30
f 80 30 32
f 1 31 33
f 2 34 32
f 81 32 34
f 1 33 35
f 2 36 34
f 82 34 36
f 1 35 37
f 2 38 36
f 83 36 38
f 1 37 39
f 2 40 38
f 84 38 40
f 1 39 41
f 2 42 40
f 85 40 42
f 1 41 43
f 2 44 42
f 86 42 44
f 1 43 45
f 2 46 44
f 87 44 46
f 1 45 47
f 2 48 46
f 88 46 48
f 1 47 49
f 2 50 48
f 89 48 50
f 1 49 51
f 2 52 50
f 90 50 52
f 1 51 53
f 2 54 52
f 91 52 54
f 1 53 55
f 2 56 54
f 92 54 56
f 1 55 57
f 2 58 56
f 93 56 58
f 1 57 59
f 2 60 58
f 94 58 60
f 1 59 61
f 2 62 60
f 95 60 62
f 1 61 63
f 2 64 62
f 96 62 64
f 1 63 65
f 2 66 64
f 97 64 66
f 1 65 3
f 2 4 66
f 98 66 4
f 3 67 68
f 5 68 69
f 7 69 70
f 9 70 71
f 11 71 72
f 13 72 73
f 15 73 74
f 17 74 75
f 19 75 76
f 21 76 77
f 23 77 78
f 25 78 79
f 27 79 80
f 29 80 81
f 31 81 82
f 33 82 83
f 35 83 84
f 37 84 85
f 39 85 86
f 41 86 87
f 43 87 88
f 45 88 89
f 47 89 90
f 49 90 91
f 51 91 92
f 53 92 93
f 55 93 94
f 57 94 95
f 59 95 96
f 61 96 97
f 63 97 98
f 65 98 67
f 86 85 42
f 87 86 44
f 88 87 46
f 43 41 87
f 45 43 88
f 80 79 30
f 81 80 32
f 82 81 34
f 83 82 36
f 84 83 38
f 85 84 40
f 29 27 80
f 31 29 81
f 33 31 82
f 35 33 83
f 37 35 84
f 39 37 85
f 41 39 86
f 68 67 6
f 69 68 8
f 70 69 10
f 71 70 12
f 72 71 14
f 73 72 16
f 74 73 18
f 75 74 20
f 76 75 22
f 77 76 24
f 78 77 26
f 79 78 28
f 89 88 48
f 90 89 50
f 91 90 52
f 92 91 54
f 93 92 56
f 94 93 58
f 95 94 60
f 96 95 62
f 97 96 64
f 98 97 66
f 67 98 4
f 5 3 68
f 7 5 69
f 9 7 70
f 11 9 71
f 13 11 72
f 15 13 73
f 17 15 74
f 19 17 75
f 21 19 76
f 23 21 77
f 25 23 78
f 27 25 79
f 47 45 89
f 49 47 90
f 51 49 91
f 53 51 92
f 55 53 93
f 57 55 94
f 59 57 95
f 61 59 96
f 63 61 97
f 65 63 98
f 3 65 67

View File

@ -0,0 +1,997 @@
# Blender v2.66 (sub 0) OBJ File: ''
# www.blender.org
v -0.195090 0.980785 0.000000
v -0.382683 0.923880 0.000000
v -0.555570 0.831470 0.000000
v -0.707107 0.707107 0.000000
v -0.831470 0.555570 0.000000
v -0.923880 0.382683 0.000000
v -0.980785 0.195090 0.000000
v -1.000000 0.000000 0.000000
v -0.980785 -0.195090 0.000000
v -0.923880 -0.382683 0.000000
v -0.831470 -0.555570 0.000000
v -0.707107 -0.707107 0.000000
v -0.555570 -0.831470 0.000000
v -0.382683 -0.923880 0.000000
v -0.195090 -0.980785 0.000000
v -0.191342 0.980785 -0.038060
v -0.375330 0.923880 -0.074658
v -0.544895 0.831470 -0.108386
v -0.693520 0.707107 -0.137950
v -0.815493 0.555570 -0.162212
v -0.906127 0.382683 -0.180240
v -0.961940 0.195090 -0.191342
v -0.980785 0.000000 -0.195090
v -0.961940 -0.195090 -0.191342
v -0.906127 -0.382683 -0.180240
v -0.815493 -0.555570 -0.162212
v -0.693520 -0.707107 -0.137950
v -0.544895 -0.831470 -0.108386
v -0.375330 -0.923880 -0.074658
v -0.191341 -0.980785 -0.038060
v -0.180240 0.980785 -0.074658
v -0.353553 0.923880 -0.146447
v -0.513280 0.831470 -0.212608
v -0.653281 0.707107 -0.270598
v -0.768178 0.555570 -0.318190
v -0.853553 0.382683 -0.353553
v -0.906127 0.195090 -0.375330
v -0.923880 0.000000 -0.382684
v -0.906127 -0.195090 -0.375330
v -0.853553 -0.382683 -0.353554
v -0.768178 -0.555570 -0.318190
v -0.653281 -0.707107 -0.270598
v -0.513280 -0.831470 -0.212608
v -0.353553 -0.923880 -0.146447
v -0.180240 -0.980785 -0.074658
v -0.162212 0.980785 -0.108387
v -0.318190 0.923880 -0.212608
v -0.461940 0.831470 -0.308658
v -0.587938 0.707107 -0.392848
v -0.691342 0.555570 -0.461940
v -0.768178 0.382683 -0.513280
v -0.815493 0.195090 -0.544895
v -0.831470 0.000000 -0.555570
v -0.815493 -0.195090 -0.544895
v -0.768178 -0.382683 -0.513280
v -0.691342 -0.555570 -0.461940
v -0.587938 -0.707107 -0.392848
v -0.461940 -0.831470 -0.308658
v -0.318189 -0.923880 -0.212608
v -0.162211 -0.980785 -0.108386
v -0.137950 0.980785 -0.137950
v -0.270598 0.923880 -0.270598
v -0.392847 0.831470 -0.392848
v -0.500000 0.707107 -0.500000
v -0.587938 0.555570 -0.587938
v -0.653281 0.382683 -0.653282
v -0.693520 0.195090 -0.693520
v -0.707107 0.000000 -0.707107
v -0.693520 -0.195090 -0.693520
v -0.653281 -0.382683 -0.653282
v -0.587938 -0.555570 -0.587938
v -0.500000 -0.707107 -0.500000
v -0.392847 -0.831470 -0.392848
v -0.270598 -0.923880 -0.270598
v -0.137949 -0.980785 -0.137950
v -0.108386 0.980785 -0.162212
v -0.212607 0.923880 -0.318190
v -0.308658 0.831470 -0.461940
v -0.392847 0.707107 -0.587938
v -0.461939 0.555570 -0.691342
v -0.513280 0.382683 -0.768178
v -0.544895 0.195090 -0.815493
v -0.555570 0.000000 -0.831470
v -0.544895 -0.195090 -0.815493
v -0.513280 -0.382683 -0.768178
v -0.461939 -0.555570 -0.691342
v -0.392847 -0.707107 -0.587938
v -0.308658 -0.831470 -0.461940
v -0.212607 -0.923880 -0.318190
v -0.108386 -0.980785 -0.162212
v -0.074658 0.980785 -0.180240
v -0.146446 0.923880 -0.353554
v -0.212607 0.831470 -0.513280
v -0.270598 0.707107 -0.653282
v -0.318189 0.555570 -0.768178
v -0.353553 0.382683 -0.853554
v -0.375330 0.195090 -0.906128
v -0.382683 0.000000 -0.923880
v -0.375330 -0.195090 -0.906128
v -0.353553 -0.382683 -0.853554
v -0.318189 -0.555570 -0.768178
v -0.270598 -0.707107 -0.653282
v -0.212607 -0.831470 -0.513280
v -0.146446 -0.923880 -0.353554
v -0.074658 -0.980785 -0.180240
v -0.038060 0.980785 -0.191342
v -0.074658 0.923880 -0.375331
v -0.108386 0.831470 -0.544895
v -0.137949 0.707107 -0.693520
v -0.162211 0.555570 -0.815493
v -0.180240 0.382683 -0.906128
v -0.191341 0.195090 -0.961940
v -0.195090 0.000000 -0.980785
v -0.191341 -0.195090 -0.961940
v -0.180240 -0.382683 -0.906128
v -0.162211 -0.555570 -0.815493
v -0.137949 -0.707107 -0.693520
v -0.108386 -0.831470 -0.544895
v -0.074658 -0.923880 -0.375330
v -0.038060 -0.980785 -0.191342
v 0.000000 0.980785 -0.195091
v 0.000000 0.923880 -0.382684
v 0.000000 0.831470 -0.555570
v 0.000000 0.707107 -0.707107
v 0.000000 0.555570 -0.831470
v 0.000000 0.382683 -0.923880
v 0.000000 0.195090 -0.980785
v 0.000000 0.000000 -1.000000
v 0.000000 -0.195090 -0.980785
v 0.000000 -0.382683 -0.923880
v 0.000000 -0.555570 -0.831470
v 0.000000 -0.707107 -0.707107
v 0.000000 -0.831470 -0.555570
v 0.000000 -0.923880 -0.382684
v 0.000000 -0.980785 -0.195090
v 0.038061 0.980785 -0.191342
v 0.074658 0.923880 -0.375330
v 0.108387 0.831470 -0.544895
v 0.137950 0.707107 -0.693520
v 0.162212 0.555570 -0.815493
v 0.180240 0.382683 -0.906128
v 0.191342 0.195090 -0.961940
v 0.195091 0.000000 -0.980785
v 0.191342 -0.195090 -0.961940
v 0.180240 -0.382683 -0.906128
v 0.162212 -0.555570 -0.815493
v 0.137950 -0.707107 -0.693520
v 0.108387 -0.831470 -0.544895
v 0.074658 -0.923880 -0.375330
v 0.038061 -0.980785 -0.191342
v 0.074658 0.980785 -0.180240
v 0.146447 0.923880 -0.353554
v 0.212608 0.831470 -0.513280
v 0.270599 0.707107 -0.653282
v 0.318190 0.555570 -0.768178
v 0.353554 0.382683 -0.853553
v 0.375331 0.195090 -0.906127
v 0.382684 0.000000 -0.923880
v 0.375331 -0.195090 -0.906127
v 0.353554 -0.382683 -0.853554
v 0.318190 -0.555570 -0.768178
v 0.270599 -0.707107 -0.653282
v 0.212608 -0.831470 -0.513280
v 0.146447 -0.923880 -0.353553
v 0.074658 -0.980785 -0.180240
v 0.108387 0.980785 -0.162212
v 0.212608 0.923880 -0.318190
v 0.308659 0.831470 -0.461940
v 0.392848 0.707107 -0.587938
v 0.461940 0.555570 -0.691342
v 0.513280 0.382683 -0.768178
v 0.544895 0.195090 -0.815493
v 0.555571 0.000000 -0.831470
v 0.544895 -0.195090 -0.815493
v 0.513280 -0.382683 -0.768178
v 0.461940 -0.555570 -0.691342
v 0.392848 -0.707107 -0.587938
v 0.308659 -0.831470 -0.461940
v 0.212608 -0.923880 -0.318190
v 0.108387 -0.980785 -0.162212
v 0.137950 0.980785 -0.137950
v 0.270599 0.923880 -0.270598
v 0.392848 0.831470 -0.392848
v 0.500000 0.707107 -0.500000
v 0.587938 0.555570 -0.587938
v 0.653282 0.382683 -0.653281
v 0.693520 0.195090 -0.693520
v 0.707107 0.000000 -0.707107
v 0.693520 -0.195090 -0.693520
v 0.653282 -0.382683 -0.653282
v 0.587938 -0.555570 -0.587938
v 0.500000 -0.707107 -0.500000
v 0.392848 -0.831470 -0.392847
v 0.270598 -0.923880 -0.270598
v 0.137950 -0.980785 -0.137950
v 0.162212 0.980785 -0.108386
v 0.318190 0.923880 -0.212608
v 0.461940 0.831470 -0.308658
v 0.587938 0.707107 -0.392847
v 0.691342 0.555570 -0.461940
v 0.768178 0.382683 -0.513280
v 0.815493 0.195090 -0.544895
v 0.831470 0.000000 -0.555570
v 0.815493 -0.195090 -0.544895
v 0.768178 -0.382683 -0.513280
v 0.691342 -0.555570 -0.461940
v 0.587938 -0.707107 -0.392847
v 0.461940 -0.831470 -0.308658
v 0.318190 -0.923880 -0.212608
v 0.162212 -0.980785 -0.108386
v 0.180240 0.980785 -0.074658
v 0.353554 0.923880 -0.146447
v 0.513280 0.831470 -0.212608
v 0.653282 0.707107 -0.270598
v 0.768178 0.555570 -0.318190
v 0.853554 0.382683 -0.353553
v 0.906128 0.195090 -0.375330
v 0.923880 0.000000 -0.382683
v 0.906128 -0.195090 -0.375330
v 0.853554 -0.382683 -0.353553
v 0.768178 -0.555570 -0.318190
v 0.653282 -0.707107 -0.270598
v 0.513280 -0.831470 -0.212607
v 0.353554 -0.923880 -0.146447
v 0.180240 -0.980785 -0.074658
v 0.191342 0.980785 -0.038060
v 0.375331 0.923880 -0.074658
v 0.544896 0.831470 -0.108386
v 0.693520 0.707107 -0.137950
v 0.815493 0.555570 -0.162212
v 0.906128 0.382683 -0.180240
v 0.961940 0.195090 -0.191342
v 0.980785 0.000000 -0.195090
v 0.961940 -0.195090 -0.191342
v 0.906128 -0.382683 -0.180240
v 0.815493 -0.555570 -0.162212
v 0.693520 -0.707107 -0.137950
v 0.544895 -0.831470 -0.108386
v 0.375331 -0.923880 -0.074658
v 0.191342 -0.980785 -0.038060
v 0.195091 0.980785 0.000000
v 0.382684 0.923880 0.000000
v 0.555571 0.831470 0.000000
v 0.707107 0.707107 0.000000
v 0.831470 0.555570 0.000000
v 0.923880 0.382683 0.000000
v 0.980785 0.195090 0.000000
v 1.000000 0.000000 0.000000
v 0.980785 -0.195090 0.000000
v 0.923880 -0.382683 0.000000
v 0.831470 -0.555570 0.000000
v 0.707107 -0.707107 0.000000
v 0.555571 -0.831470 0.000000
v 0.382684 -0.923880 0.000000
v 0.195091 -0.980785 0.000000
v 0.191342 0.980785 0.038060
v 0.375331 0.923880 0.074658
v 0.544896 0.831470 0.108386
v 0.693520 0.707107 0.137950
v 0.815493 0.555570 0.162212
v 0.906128 0.382683 0.180240
v 0.961940 0.195090 0.191342
v 0.980785 0.000000 0.195090
v 0.961940 -0.195090 0.191342
v 0.906128 -0.382683 0.180240
v 0.815493 -0.555570 0.162212
v 0.693520 -0.707107 0.137950
v 0.544895 -0.831470 0.108386
v 0.375331 -0.923880 0.074658
v 0.191342 -0.980785 0.038060
v 0.180240 0.980785 0.074658
v 0.353554 0.923880 0.146447
v 0.513280 0.831470 0.212608
v 0.653282 0.707107 0.270598
v 0.768178 0.555570 0.318190
v 0.853554 0.382683 0.353554
v 0.906128 0.195090 0.375330
v 0.923880 0.000000 0.382683
v 0.906128 -0.195090 0.375330
v 0.853554 -0.382683 0.353553
v 0.768178 -0.555570 0.318190
v 0.653282 -0.707107 0.270598
v 0.513280 -0.831470 0.212608
v 0.353554 -0.923880 0.146447
v 0.180240 -0.980785 0.074658
v 0.162212 0.980785 0.108387
v 0.318190 0.923880 0.212608
v 0.461940 0.831470 0.308658
v 0.587938 0.707107 0.392848
v 0.691342 0.555570 0.461940
v 0.768178 0.382683 0.513280
v 0.815493 0.195090 0.544895
v 0.831470 0.000000 0.555570
v 0.815493 -0.195090 0.544895
v 0.768178 -0.382683 0.513280
v 0.691342 -0.555570 0.461940
v 0.587938 -0.707107 0.392848
v 0.461940 -0.831470 0.308658
v 0.318190 -0.923880 0.212608
v 0.162212 -0.980785 0.108386
v 0.137950 0.980785 0.137950
v 0.270598 0.923880 0.270598
v 0.392848 0.831470 0.392848
v 0.500000 0.707107 0.500000
v 0.587938 0.555570 0.587938
v 0.653282 0.382683 0.653282
v 0.693520 0.195090 0.693520
v 0.707107 0.000000 0.707107
v 0.693520 -0.195090 0.693520
v 0.653282 -0.382683 0.653282
v 0.587938 -0.555570 0.587938
v 0.500000 -0.707107 0.500000
v 0.392848 -0.831470 0.392848
v 0.270598 -0.923880 0.270598
v 0.137950 -0.980785 0.137950
v 0.108387 0.980785 0.162212
v 0.212608 0.923880 0.318190
v 0.308659 0.831470 0.461940
v 0.392848 0.707107 0.587938
v 0.461940 0.555570 0.691342
v 0.513280 0.382683 0.768178
v 0.544895 0.195090 0.815493
v 0.555570 0.000000 0.831469
v 0.544895 -0.195090 0.815493
v 0.513280 -0.382683 0.768178
v 0.461940 -0.555570 0.691342
v 0.392848 -0.707107 0.587938
v 0.308659 -0.831470 0.461940
v 0.212608 -0.923880 0.318190
v 0.108387 -0.980785 0.162212
v 0.000000 -1.000000 0.000000
v 0.074658 0.980785 0.180240
v 0.146447 0.923880 0.353554
v 0.212608 0.831470 0.513280
v 0.270598 0.707107 0.653281
v 0.318190 0.555570 0.768178
v 0.353554 0.382683 0.853553
v 0.375330 0.195090 0.906127
v 0.382683 0.000000 0.923879
v 0.375330 -0.195090 0.906127
v 0.353554 -0.382683 0.853553
v 0.318190 -0.555570 0.768178
v 0.270598 -0.707107 0.653281
v 0.212608 -0.831470 0.513280
v 0.146447 -0.923880 0.353553
v 0.074658 -0.980785 0.180240
v 0.038061 0.980785 0.191342
v 0.074658 0.923880 0.375330
v 0.108387 0.831470 0.544895
v 0.137950 0.707107 0.693520
v 0.162212 0.555570 0.815493
v 0.180240 0.382683 0.906127
v 0.191342 0.195090 0.961940
v 0.195090 0.000000 0.980785
v 0.191342 -0.195090 0.961940
v 0.180240 -0.382683 0.906128
v 0.162212 -0.555570 0.815493
v 0.137950 -0.707107 0.693520
v 0.108387 -0.831470 0.544895
v 0.074658 -0.923880 0.375330
v 0.038061 -0.980785 0.191342
v 0.000000 0.980785 0.195090
v 0.000000 0.923880 0.382684
v 0.000000 0.831470 0.555570
v 0.000000 0.707107 0.707107
v 0.000000 0.555570 0.831469
v 0.000000 0.382683 0.923879
v 0.000000 0.195090 0.980785
v 0.000000 0.000000 1.000000
v 0.000000 -0.195090 0.980785
v 0.000000 -0.382683 0.923880
v 0.000000 -0.555570 0.831469
v 0.000000 -0.707107 0.707107
v 0.000000 -0.831470 0.555570
v 0.000000 -0.923880 0.382683
v 0.000000 -0.980785 0.195090
v -0.038060 0.980785 0.191342
v -0.074658 0.923880 0.375330
v -0.108386 0.831470 0.544895
v -0.137949 0.707107 0.693520
v -0.162211 0.555570 0.815493
v -0.180240 0.382683 0.906127
v -0.191342 0.195090 0.961939
v -0.195090 0.000000 0.980785
v -0.191342 -0.195090 0.961939
v -0.180240 -0.382683 0.906127
v -0.162211 -0.555570 0.815493
v -0.137949 -0.707107 0.693520
v -0.108386 -0.831470 0.544895
v -0.074658 -0.923880 0.375330
v -0.038060 -0.980785 0.191342
v -0.074658 0.980785 0.180240
v -0.146446 0.923880 0.353553
v -0.212607 0.831470 0.513280
v -0.270598 0.707107 0.653281
v -0.318189 0.555570 0.768177
v -0.353553 0.382683 0.853553
v -0.375330 0.195090 0.906127
v -0.382683 0.000000 0.923879
v -0.375330 -0.195090 0.906127
v -0.353553 -0.382683 0.853553
v -0.318189 -0.555570 0.768177
v -0.270598 -0.707107 0.653281
v -0.212607 -0.831470 0.513280
v -0.146446 -0.923880 0.353553
v -0.074657 -0.980785 0.180240
v -0.108386 0.980785 0.162212
v -0.212607 0.923880 0.318190
v -0.308658 0.831470 0.461940
v -0.392847 0.707107 0.587938
v -0.461939 0.555570 0.691341
v -0.513280 0.382683 0.768178
v -0.544895 0.195090 0.815493
v -0.555570 0.000000 0.831469
v -0.544895 -0.195090 0.815493
v -0.513280 -0.382683 0.768178
v -0.461939 -0.555570 0.691341
v -0.392847 -0.707107 0.587938
v -0.308658 -0.831470 0.461940
v -0.212607 -0.923880 0.318190
v -0.108386 -0.980785 0.162212
v -0.137949 0.980785 0.137950
v -0.270598 0.923880 0.270598
v -0.392847 0.831470 0.392847
v -0.500000 0.707107 0.500000
v -0.587937 0.555570 0.587937
v -0.653281 0.382683 0.653281
v -0.693519 0.195090 0.693519
v -0.707106 0.000000 0.707106
v -0.693519 -0.195090 0.693519
v -0.653281 -0.382683 0.653281
v -0.587937 -0.555570 0.587937
v -0.500000 -0.707107 0.500000
v -0.392847 -0.831470 0.392847
v -0.270598 -0.923880 0.270598
v -0.137949 -0.980785 0.137950
v 0.000000 1.000000 0.000000
v -0.162211 0.980785 0.108386
v -0.318189 0.923880 0.212608
v -0.461939 0.831470 0.308658
v -0.587937 0.707107 0.392847
v -0.691341 0.555570 0.461939
v -0.768177 0.382683 0.513280
v -0.815493 0.195090 0.544895
v -0.831469 0.000000 0.555570
v -0.815493 -0.195090 0.544895
v -0.768178 -0.382683 0.513280
v -0.691341 -0.555570 0.461939
v -0.587937 -0.707107 0.392847
v -0.461939 -0.831470 0.308658
v -0.318189 -0.923880 0.212608
v -0.162211 -0.980785 0.108386
v -0.180240 0.980785 0.074658
v -0.353553 0.923880 0.146447
v -0.513280 0.831470 0.212607
v -0.653281 0.707107 0.270598
v -0.768177 0.555570 0.318189
v -0.853553 0.382683 0.353553
v -0.906127 0.195090 0.375330
v -0.923879 0.000000 0.382683
v -0.906127 -0.195090 0.375330
v -0.853553 -0.382683 0.353553
v -0.768177 -0.555570 0.318189
v -0.653281 -0.707107 0.270598
v -0.513280 -0.831470 0.212607
v -0.353553 -0.923880 0.146447
v -0.180240 -0.980785 0.074658
v -0.191341 0.980785 0.038060
v -0.375330 0.923880 0.074658
v -0.544895 0.831470 0.108386
v -0.693520 0.707107 0.137950
v -0.815492 0.555570 0.162211
v -0.906127 0.382683 0.180240
v -0.961939 0.195090 0.191341
v -0.980784 0.000000 0.195090
v -0.961939 -0.195090 0.191341
v -0.906127 -0.382683 0.180240
v -0.815492 -0.555570 0.162211
v -0.693520 -0.707107 0.137950
v -0.544895 -0.831470 0.108386
v -0.375330 -0.923880 0.074658
v -0.191341 -0.980785 0.038060
s off
f 13 12 27 28
f 7 6 21 22
f 14 13 28 29
f 8 7 22 23
f 2 1 16 17
f 15 14 29 30
f 9 8 23 24
f 3 2 17 18
f 10 9 24 25
f 4 3 18 19
f 11 10 25 26
f 5 4 19 20
f 12 11 26 27
f 6 5 20 21
f 30 29 44 45
f 24 23 38 39
f 18 17 32 33
f 25 24 39 40
f 19 18 33 34
f 26 25 40 41
f 20 19 34 35
f 27 26 41 42
f 21 20 35 36
f 28 27 42 43
f 22 21 36 37
f 29 28 43 44
f 23 22 37 38
f 17 16 31 32
f 43 42 57 58
f 37 36 51 52
f 44 43 58 59
f 38 37 52 53
f 32 31 46 47
f 45 44 59 60
f 39 38 53 54
f 33 32 47 48
f 40 39 54 55
f 34 33 48 49
f 41 40 55 56
f 35 34 49 50
f 42 41 56 57
f 36 35 50 51
f 56 55 70 71
f 50 49 64 65
f 57 56 71 72
f 51 50 65 66
f 58 57 72 73
f 52 51 66 67
f 59 58 73 74
f 53 52 67 68
f 47 46 61 62
f 60 59 74 75
f 54 53 68 69
f 48 47 62 63
f 55 54 69 70
f 49 48 63 64
f 75 74 89 90
f 69 68 83 84
f 63 62 77 78
f 70 69 84 85
f 64 63 78 79
f 71 70 85 86
f 65 64 79 80
f 72 71 86 87
f 66 65 80 81
f 73 72 87 88
f 67 66 81 82
f 74 73 88 89
f 68 67 82 83
f 62 61 76 77
f 88 87 102 103
f 82 81 96 97
f 89 88 103 104
f 83 82 97 98
f 77 76 91 92
f 90 89 104 105
f 84 83 98 99
f 78 77 92 93
f 85 84 99 100
f 79 78 93 94
f 86 85 100 101
f 80 79 94 95
f 87 86 101 102
f 81 80 95 96
f 94 93 108 109
f 101 100 115 116
f 95 94 109 110
f 102 101 116 117
f 96 95 110 111
f 103 102 117 118
f 97 96 111 112
f 104 103 118 119
f 98 97 112 113
f 92 91 106 107
f 105 104 119 120
f 99 98 113 114
f 93 92 107 108
f 100 99 114 115
f 113 112 127 128
f 107 106 121 122
f 120 119 134 135
f 114 113 128 129
f 108 107 122 123
f 115 114 129 130
f 109 108 123 124
f 116 115 130 131
f 110 109 124 125
f 117 116 131 132
f 111 110 125 126
f 118 117 132 133
f 112 111 126 127
f 119 118 133 134
f 132 131 146 147
f 126 125 140 141
f 133 132 147 148
f 127 126 141 142
f 134 133 148 149
f 128 127 142 143
f 122 121 136 137
f 135 134 149 150
f 129 128 143 144
f 123 122 137 138
f 130 129 144 145
f 124 123 138 139
f 131 130 145 146
f 125 124 139 140
f 145 144 159 160
f 139 138 153 154
f 146 145 160 161
f 140 139 154 155
f 147 146 161 162
f 141 140 155 156
f 148 147 162 163
f 142 141 156 157
f 149 148 163 164
f 143 142 157 158
f 137 136 151 152
f 150 149 164 165
f 144 143 158 159
f 138 137 152 153
f 164 163 178 179
f 158 157 172 173
f 152 151 166 167
f 165 164 179 180
f 159 158 173 174
f 153 152 167 168
f 160 159 174 175
f 154 153 168 169
f 161 160 175 176
f 155 154 169 170
f 162 161 176 177
f 156 155 170 171
f 163 162 177 178
f 157 156 171 172
f 177 176 191 192
f 171 170 185 186
f 178 177 192 193
f 172 171 186 187
f 179 178 193 194
f 173 172 187 188
f 167 166 181 182
f 180 179 194 195
f 174 173 188 189
f 168 167 182 183
f 175 174 189 190
f 169 168 183 184
f 176 175 190 191
f 170 169 184 185
f 190 189 204 205
f 184 183 198 199
f 191 190 205 206
f 185 184 199 200
f 192 191 206 207
f 186 185 200 201
f 193 192 207 208
f 187 186 201 202
f 194 193 208 209
f 188 187 202 203
f 182 181 196 197
f 195 194 209 210
f 189 188 203 204
f 183 182 197 198
f 209 208 223 224
f 203 202 217 218
f 197 196 211 212
f 210 209 224 225
f 204 203 218 219
f 198 197 212 213
f 205 204 219 220
f 199 198 213 214
f 206 205 220 221
f 200 199 214 215
f 207 206 221 222
f 201 200 215 216
f 208 207 222 223
f 202 201 216 217
f 222 221 236 237
f 216 215 230 231
f 223 222 237 238
f 217 216 231 232
f 224 223 238 239
f 218 217 232 233
f 212 211 226 227
f 225 224 239 240
f 219 218 233 234
f 213 212 227 228
f 220 219 234 235
f 214 213 228 229
f 221 220 235 236
f 215 214 229 230
f 228 227 242 243
f 235 234 249 250
f 229 228 243 244
f 236 235 250 251
f 230 229 244 245
f 237 236 251 252
f 231 230 245 246
f 238 237 252 253
f 232 231 246 247
f 239 238 253 254
f 233 232 247 248
f 227 226 241 242
f 240 239 254 255
f 234 233 248 249
f 247 246 261 262
f 254 253 268 269
f 248 247 262 263
f 242 241 256 257
f 255 254 269 270
f 249 248 263 264
f 243 242 257 258
f 250 249 264 265
f 244 243 258 259
f 251 250 265 266
f 245 244 259 260
f 252 251 266 267
f 246 245 260 261
f 253 252 267 268
f 266 265 280 281
f 260 259 274 275
f 267 266 281 282
f 261 260 275 276
f 268 267 282 283
f 262 261 276 277
f 269 268 283 284
f 263 262 277 278
f 257 256 271 272
f 270 269 284 285
f 264 263 278 279
f 258 257 272 273
f 265 264 279 280
f 259 258 273 274
f 285 284 299 300
f 279 278 293 294
f 273 272 287 288
f 280 279 294 295
f 274 273 288 289
f 281 280 295 296
f 275 274 289 290
f 282 281 296 297
f 276 275 290 291
f 283 282 297 298
f 277 276 291 292
f 284 283 298 299
f 278 277 292 293
f 272 271 286 287
f 298 297 312 313
f 292 291 306 307
f 299 298 313 314
f 293 292 307 308
f 287 286 301 302
f 300 299 314 315
f 294 293 308 309
f 288 287 302 303
f 295 294 309 310
f 289 288 303 304
f 296 295 310 311
f 290 289 304 305
f 297 296 311 312
f 291 290 305 306
f 311 310 325 326
f 305 304 319 320
f 312 311 326 327
f 306 305 320 321
f 313 312 327 328
f 307 306 321 322
f 314 313 328 329
f 308 307 322 323
f 302 301 316 317
f 315 314 329 330
f 309 308 323 324
f 303 302 317 318
f 310 309 324 325
f 304 303 318 319
f 330 329 345 346
f 324 323 339 340
f 318 317 333 334
f 325 324 340 341
f 319 318 334 335
f 326 325 341 342
f 320 319 335 336
f 327 326 342 343
f 321 320 336 337
f 328 327 343 344
f 322 321 337 338
f 329 328 344 345
f 323 322 338 339
f 317 316 332 333
f 344 343 358 359
f 338 337 352 353
f 345 344 359 360
f 339 338 353 354
f 333 332 347 348
f 346 345 360 361
f 340 339 354 355
f 334 333 348 349
f 341 340 355 356
f 335 334 349 350
f 342 341 356 357
f 336 335 350 351
f 343 342 357 358
f 337 336 351 352
f 357 356 371 372
f 351 350 365 366
f 358 357 372 373
f 352 351 366 367
f 359 358 373 374
f 353 352 367 368
f 360 359 374 375
f 354 353 368 369
f 348 347 362 363
f 361 360 375 376
f 355 354 369 370
f 349 348 363 364
f 356 355 370 371
f 350 349 364 365
f 363 362 377 378
f 376 375 390 391
f 370 369 384 385
f 364 363 378 379
f 371 370 385 386
f 365 364 379 380
f 372 371 386 387
f 366 365 380 381
f 373 372 387 388
f 367 366 381 382
f 374 373 388 389
f 368 367 382 383
f 375 374 389 390
f 369 368 383 384
f 382 381 396 397
f 389 388 403 404
f 383 382 397 398
f 390 389 404 405
f 384 383 398 399
f 378 377 392 393
f 391 390 405 406
f 385 384 399 400
f 379 378 393 394
f 386 385 400 401
f 380 379 394 395
f 387 386 401 402
f 381 380 395 396
f 388 387 402 403
f 401 400 415 416
f 395 394 409 410
f 402 401 416 417
f 396 395 410 411
f 403 402 417 418
f 397 396 411 412
f 404 403 418 419
f 398 397 412 413
f 405 404 419 420
f 399 398 413 414
f 393 392 407 408
f 406 405 420 421
f 400 399 414 415
f 394 393 408 409
f 420 419 434 435
f 414 413 428 429
f 408 407 422 423
f 421 420 435 436
f 415 414 429 430
f 409 408 423 424
f 416 415 430 431
f 410 409 424 425
f 417 416 431 432
f 411 410 425 426
f 418 417 432 433
f 412 411 426 427
f 419 418 433 434
f 413 412 427 428
f 433 432 448 449
f 427 426 442 443
f 434 433 449 450
f 428 427 443 444
f 435 434 450 451
f 429 428 444 445
f 423 422 438 439
f 436 435 451 452
f 430 429 445 446
f 424 423 439 440
f 431 430 446 447
f 425 424 440 441
f 432 431 447 448
f 426 425 441 442
f 447 446 461 462
f 441 440 455 456
f 448 447 462 463
f 442 441 456 457
f 449 448 463 464
f 443 442 457 458
f 450 449 464 465
f 444 443 458 459
f 451 450 465 466
f 445 444 459 460
f 439 438 453 454
f 452 451 466 467
f 446 445 460 461
f 440 439 454 455
f 466 465 480 481
f 460 459 474 475
f 454 453 468 469
f 467 466 481 482
f 461 460 475 476
f 455 454 469 470
f 462 461 476 477
f 456 455 470 471
f 463 462 477 478
f 457 456 471 472
f 464 463 478 479
f 458 457 472 473
f 465 464 479 480
f 459 458 473 474
f 1 437 16
f 331 15 30
f 331 30 45
f 16 437 31
f 31 437 46
f 331 45 60
f 46 437 61
f 331 60 75
f 331 75 90
f 61 437 76
f 76 437 91
f 331 90 105
f 91 437 106
f 331 105 120
f 331 120 135
f 106 437 121
f 121 437 136
f 331 135 150
f 331 150 165
f 136 437 151
f 331 165 180
f 151 437 166
f 166 437 181
f 331 180 195
f 331 195 210
f 181 437 196
f 331 210 225
f 196 437 211
f 211 437 226
f 331 225 240
f 331 240 255
f 226 437 241
f 241 437 256
f 331 255 270
f 256 437 271
f 331 270 285
f 331 285 300
f 271 437 286
f 286 437 301
f 331 300 315
f 301 437 316
f 331 315 330
f 331 330 346
f 316 437 332
f 332 437 347
f 331 346 361
f 347 437 362
f 331 361 376
f 331 376 391
f 362 437 377
f 377 437 392
f 331 391 406
f 392 437 407
f 331 406 421
f 331 421 436
f 407 437 422
f 422 437 438
f 331 436 452
f 331 452 467
f 438 437 453
f 331 467 482
f 453 437 468
f 479 478 11 12
f 473 472 5 6
f 480 479 12 13
f 474 473 6 7
f 468 437 1
f 481 480 13 14
f 475 474 7 8
f 469 468 1 2
f 482 481 14 15
f 476 475 8 9
f 470 469 2 3
f 331 482 15
f 477 476 9 10
f 471 470 3 4
f 478 477 10 11
f 472 471 4 5

View File

@ -111,6 +111,11 @@ class Shader {
void setMatrix3x3Uniform(const std::string& variableName, const float* matrix,
bool transpose = false) const;
// Set a 3x3 matrix uniform value to this shader (be careful if the uniform is not
// used in the shader, the compiler will remove it, then when you will try
// to set it, an assert will occur)
void setMatrix3x3Uniform(const std::string& variableName, const Matrix3& matrix) const;
// Set a 4x4 matrix uniform value to this shader (be careful if the uniform is not
// used in the shader, the compiler will remove it, then when you will try
// to set it, an assert will occur)
@ -208,6 +213,20 @@ inline void Shader::setMatrix3x3Uniform(const std::string& variableName, const f
glUniformMatrix3fv(getUniformLocation(variableName), 1, transpose, matrix);
}
// Set a 3x3 matrix uniform value to this shader (be careful if the uniform is not
// used in the shader, the compiler will remove it, then when you will try
// to set it, an assert will occur)
inline void Shader::setMatrix3x3Uniform(const std::string& variableName, const Matrix3& matrix) const {
assert(mProgramObjectID != 0);
GLfloat mat[9];
for (int i=0; i<3; i++) {
for (int j=0; j<3; j++) {
mat[i*3 + j] = matrix.getValue(i, j);
}
}
glUniformMatrix3fv(getUniformLocation(variableName), 1, true, mat);
}
// Set a 4x4 matrix uniform value to this shader (be careful if the uniform is not
// used in the shader, the compiler will remove it, then when you will try
// to set it, an assert will occur)

View File

@ -32,6 +32,7 @@
#include <iostream>
#include "Vector3.h"
#include "Vector4.h"
#include "Matrix3.h"
namespace openglframework {
@ -233,6 +234,13 @@ class Matrix4 {
m[0][3], m[1][3], m[2][3], m[3][3]);
}
// Return the 3x3 upper-left matrix
Matrix3 getUpperLeft3x3Matrix() const {
return Matrix3(m[0][0], m[0][1], m[0][2],
m[1][0], m[1][1], m[1][2],
m[2][0], m[2][1], m[2][2]);
}
// Return the inversed matrix
Matrix4 getInverse() const {
int indxc[4], indxr[4];

View File

@ -24,8 +24,7 @@
********************************************************************************/
// Uniform variables
uniform vec3 cameraWorldPosition; // World position of the camera
uniform vec3 lightWorldPosition; // World position of the light
uniform vec3 lightPosCameraSpace; // Camera-space position of the light
uniform vec3 lightAmbientColor; // Lights ambient color
uniform vec3 lightDiffuseColor; // Light diffuse color
uniform vec3 lightSpecularColor; // Light specular color
@ -34,9 +33,9 @@ uniform sampler2D texture; // Texture
uniform bool isTexture; // True if we need to use the texture
// Varying variables
varying vec3 worldPosition; // World position of the vertex
varying vec3 worldNormal; // World surface normalWorld
varying vec2 texCoords; // Texture coordinates
varying vec3 vertexPosCameraSpace; // Camera-space position of the vertex
varying vec3 vertexNormalCameraSpace; // Vertex normal in camera-space
varying vec2 texCoords; // Texture coordinates
void main() {
@ -44,19 +43,21 @@ void main() {
vec3 ambient = lightAmbientColor;
// Get the texture color
vec3 textureColor = vec3(1);
if (isTexture) textureColor = texture2D(texture, texCoords).rgb;
// Compute the diffuse term
vec3 L = normalize(lightWorldPosition - worldPosition);
vec3 N = normalize(worldNormal);
vec3 diffuse = lightDiffuseColor * max(dot(N, L), 0.0) * textureColor;
vec3 L = normalize(lightPosCameraSpace - vertexPosCameraSpace);
vec3 N = normalize(vertexNormalCameraSpace);
float diffuseFactor = max(dot(N, L), 0.0);
vec3 diffuse = lightDiffuseColor * diffuseFactor * textureColor;
// Compute the specular term
vec3 V = normalize(cameraWorldPosition - worldPosition);
vec3 V = normalize(-vertexPosCameraSpace);
vec3 H = normalize(V + L);
vec3 specular = lightSpecularColor * pow(max(dot(N, H), 0), shininess);
float specularFactor = pow(max(dot(N, H), 0), shininess);
if (diffuseFactor < 0) specularFactor = 0.0;
vec3 specular = lightSpecularColor * specularFactor;
// Compute the final color
gl_FragColor = vec4(ambient + diffuse + specular, 1.0);

View File

@ -24,28 +24,27 @@
********************************************************************************/
// Uniform variables
uniform mat4 modelToWorldMatrix; // Model too world coordinates matrix
uniform mat4 worldToCameraMatrix; // World to camera coordinates matrix
uniform mat4 localToCameraMatrix; // Local-space to camera-space matrix
uniform mat4 projectionMatrix; // Projection matrix
uniform mat3 normalMatrix; // Normal matrix
// Varying variables
varying vec3 worldPosition; // World position of the vertex
varying vec3 worldNormal; // World surface normalWorld
varying vec3 vertexPosCameraSpace; // Camera-space position of the vertex
varying vec3 vertexNormalCameraSpace; // Vertex normal in camera-space
varying vec2 texCoords; // Texture coordinates
void main() {
// Compute the vertex position
vec4 worldPos = modelToWorldMatrix * gl_Vertex;
worldPosition = worldPos.xyz;
vec4 positionCameraSpace = localToCameraMatrix * gl_Vertex;
vertexPosCameraSpace = positionCameraSpace.xyz;
// Compute the world surface normal
vec3 bodyNormal = normalize(gl_Normal);
worldNormal = (modelToWorldMatrix * vec4(bodyNormal, 0.0)).xyz;
vertexNormalCameraSpace = normalMatrix * gl_Normal;
// Get the texture coordinates
texCoords = gl_MultiTexCoord0.xy;
// Compute the clip-space vertex coordinates
gl_Position = projectionMatrix * worldToCameraMatrix * worldPos;
gl_Position = projectionMatrix * positionCameraSpace;
}

View File

@ -59,7 +59,7 @@ Scene::Scene(GlutViewer* viewer) : mViewer(viewer), mLight0(0),
float radius = 2.0f;
// Create all the cubes of the scene
for (int i=0; i<NB_BOXES; i++) {
for (int i=0; i<NB_SPHERES; i++) {
// Position of the cubes
float angle = i * 30.0f;
@ -68,7 +68,7 @@ Scene::Scene(GlutViewer* viewer) : mViewer(viewer), mLight0(0),
radius * sin(angle));
// Create a cube and a corresponding rigid in the dynamics world
Box* cube = new Box(BOX_SIZE, position , BOX_MASS, mDynamicsWorld);
Box* cube = new Box(BOX_SIZE, position , SPHERE_MASS, mDynamicsWorld);
// The box is a moving rigid body
cube->getRigidBody()->setIsMotionEnabled(true);
@ -151,17 +151,16 @@ void Scene::render() {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glEnable(GL_CULL_FACE);
// Get the world-space to camera-space matrix
const Camera& camera = mViewer->getCamera();
const openglframework::Matrix4 worldToCameraMatrix = camera.getTransformMatrix().getInverse();
// Bind the shader
mPhongShader.bind();
// Set the variables of the shader
const Camera& camera = mViewer->getCamera();
Matrix4 matrixIdentity;
matrixIdentity.setToIdentity();
mPhongShader.setVector3Uniform("cameraWorldPosition", mViewer->getCamera().getOrigin());
mPhongShader.setMatrix4x4Uniform("worldToCameraMatrix", camera.getTransformMatrix().getInverse());
mPhongShader.setMatrix4x4Uniform("projectionMatrix", camera.getProjectionMatrix());
mPhongShader.setVector3Uniform("lightWorldPosition", mLight0.getOrigin());
mPhongShader.setVector3Uniform("lightPosCameraSpace",worldToCameraMatrix * mLight0.getOrigin());
mPhongShader.setVector3Uniform("lightAmbientColor", Vector3(0.3f, 0.3f, 0.3f));
Color& diffCol = mLight0.getDiffuseColor();
Color& specCol = mLight0.getSpecularColor();
@ -171,11 +170,11 @@ void Scene::render() {
// Render all the cubes of the scene
for (std::vector<Box*>::iterator it = mBoxes.begin(); it != mBoxes.end(); ++it) {
(*it)->render(mPhongShader);
(*it)->render(mPhongShader, worldToCameraMatrix);
}
// Render the floor
mFloor->render(mPhongShader);
mFloor->render(mPhongShader, worldToCameraMatrix);
// Unbind the shader
mPhongShader.unbind();

View File

@ -32,10 +32,10 @@
#include "Box.h"
// Constants
const int NB_BOXES = 20; // Number of boxes in the scene
const int NB_SPHERES = 20; // Number of boxes in the scene
const openglframework::Vector3 BOX_SIZE(2, 2, 2); // Box dimensions in meters
const openglframework::Vector3 FLOOR_SIZE(20, 0.5f, 20); // Floor dimensions in meters
const float BOX_MASS = 1.0f; // Box mass in kilograms
const float SPHERE_MASS = 1.0f; // Box mass in kilograms
const float FLOOR_MASS = 100.0f; // Floor mass in kilograms
// Class Scene

View File

@ -156,15 +156,15 @@ void Scene::render() {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glEnable(GL_CULL_FACE);
// Get the world-space to camera-space matrix
const Camera& camera = mViewer->getCamera();
const openglframework::Matrix4 worldToCameraMatrix = camera.getTransformMatrix().getInverse();
// Bind the shader
mPhongShader.bind();
// Set the variables of the shader
const Camera& camera = mViewer->getCamera();
Matrix4 matrixIdentity;
matrixIdentity.setToIdentity();
mPhongShader.setVector3Uniform("cameraWorldPosition", mViewer->getCamera().getOrigin());
mPhongShader.setMatrix4x4Uniform("worldToCameraMatrix", camera.getTransformMatrix().getInverse());
mPhongShader.setVector3Uniform("lightPosCameraSpace",worldToCameraMatrix * mLight0.getOrigin());
mPhongShader.setMatrix4x4Uniform("projectionMatrix", camera.getProjectionMatrix());
mPhongShader.setVector3Uniform("lightWorldPosition", mLight0.getOrigin());
mPhongShader.setVector3Uniform("lightAmbientColor", Vector3(0.3f, 0.3f, 0.3f));
@ -175,17 +175,17 @@ void Scene::render() {
mPhongShader.setFloatUniform("shininess", 60.0f);
// Render all the boxes
mSliderJointBottomBox->render(mPhongShader);
mSliderJointTopBox->render(mPhongShader);
mPropellerBox->render(mPhongShader);
mFixedJointBox1->render(mPhongShader);
mFixedJointBox2->render(mPhongShader);
mSliderJointBottomBox->render(mPhongShader, worldToCameraMatrix);
mSliderJointTopBox->render(mPhongShader, worldToCameraMatrix);
mPropellerBox->render(mPhongShader, worldToCameraMatrix);
mFixedJointBox1->render(mPhongShader, worldToCameraMatrix);
mFixedJointBox2->render(mPhongShader, worldToCameraMatrix);
for (int i=0; i<NB_BALLSOCKETJOINT_BOXES; i++) {
mBallAndSocketJointChainBoxes[i]->render(mPhongShader);
mBallAndSocketJointChainBoxes[i]->render(mPhongShader, worldToCameraMatrix);
}
// Render the floor
mFloor->render(mPhongShader);
mFloor->render(mPhongShader, worldToCameraMatrix);
// Unbind the shader
mPhongShader.unbind();
@ -244,7 +244,7 @@ void Scene::createSliderJoint() {
// Create a box and a corresponding rigid in the dynamics world
openglframework::Vector3 box1Dimension(2, 4, 2);
mSliderJointBottomBox = new Box(box1Dimension, positionBox1 , BOX_MASS, mDynamicsWorld);
mSliderJointBottomBox = new Box(box1Dimension, positionBox1 , SPHERE_MASS, mDynamicsWorld);
// The fist box cannot move
mSliderJointBottomBox->getRigidBody()->setIsMotionEnabled(false);
@ -259,7 +259,7 @@ void Scene::createSliderJoint() {
// Create a box and a corresponding rigid in the dynamics world
openglframework::Vector3 box2Dimension(1.5, 4, 1.5);
mSliderJointTopBox = new Box(box2Dimension, positionBox2 , BOX_MASS, mDynamicsWorld);
mSliderJointTopBox = new Box(box2Dimension, positionBox2 , SPHERE_MASS, mDynamicsWorld);
// The second box is allowed to move
mSliderJointTopBox->getRigidBody()->setIsMotionEnabled(true);
@ -297,7 +297,7 @@ void Scene::createPropellerHingeJoint() {
// Create a box and a corresponding rigid in the dynamics world
openglframework::Vector3 boxDimension(10, 1, 1);
mPropellerBox = new Box(boxDimension, positionBox1 , BOX_MASS, mDynamicsWorld);
mPropellerBox = new Box(boxDimension, positionBox1 , SPHERE_MASS, mDynamicsWorld);
// The fist box cannot move
mPropellerBox->getRigidBody()->setIsMotionEnabled(true);
@ -334,7 +334,7 @@ void Scene::createFixedJoints() {
// Create a box and a corresponding rigid in the dynamics world
openglframework::Vector3 boxDimension(1.5, 1.5, 1.5);
mFixedJointBox1 = new Box(boxDimension, positionBox1 , BOX_MASS, mDynamicsWorld);
mFixedJointBox1 = new Box(boxDimension, positionBox1 , SPHERE_MASS, mDynamicsWorld);
// The fist box cannot move
mFixedJointBox1->getRigidBody()->setIsMotionEnabled(true);
@ -348,7 +348,7 @@ void Scene::createFixedJoints() {
openglframework::Vector3 positionBox2(-5, 7, 0);
// Create a box and a corresponding rigid in the dynamics world
mFixedJointBox2 = new Box(boxDimension, positionBox2 , BOX_MASS, mDynamicsWorld);
mFixedJointBox2 = new Box(boxDimension, positionBox2 , SPHERE_MASS, mDynamicsWorld);
// The second box is allowed to move
mFixedJointBox2->getRigidBody()->setIsMotionEnabled(true);

View File

@ -34,7 +34,7 @@
// Constants
const openglframework::Vector3 BOX_SIZE(2, 2, 2); // Box dimensions in meters
const openglframework::Vector3 FLOOR_SIZE(20, 0.5f, 20); // Floor dimensions in meters
const float BOX_MASS = 1.0f; // Box mass in kilograms
const float SPHERE_MASS = 1.0f; // Box mass in kilograms
const float FLOOR_MASS = 100.0f; // Floor mass in kilograms
const int NB_BALLSOCKETJOINT_BOXES = 7; // Number of Ball-And-Socket chain boxes
const int NB_HINGE_BOXES = 7; // Number of Hinge chain boxes

View File

@ -224,6 +224,9 @@ public :
/// Return an iterator to the end of the rigid bodies of the physics world
std::set<RigidBody*>::iterator getRigidBodiesEndIterator();
/// Return a reference to the contact manifolds of the world
const std::vector<ContactManifold*>& getContactManifolds() const;
};
// Start the physics simulation
@ -333,12 +336,17 @@ inline std::set<RigidBody*>::iterator DynamicsWorld::getRigidBodiesEndIterator()
return mRigidBodies.end();
}
// Return a reference to the contact manifolds of the world
inline const std::vector<ContactManifold*>& DynamicsWorld::getContactManifolds() const {
return mContactManifolds;
}
// Return the number of contact manifolds in the world
inline uint DynamicsWorld::getNbContactManifolds() const {
return mContactManifolds.size();
}
/// Return the current physics time (in seconds)
// Return the current physics time (in seconds)
inline long double DynamicsWorld::getPhysicsTime() const {
return mTimer.getPhysicsTime();
}