Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 4 typos #4600

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/ExampleBrowser/ExampleEntries.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ static ExampleEntry gDefaultExamples[] =
//#endif

ExampleEntry(0, "Importers"),
ExampleEntry(1, "Import .bullet", "Load a binary .bullet file. The serialization mechanism can deal with versioning, differences in endianess, 32 and 64bit, double/single precision. It is easy to save a .bullet file, see the examples/Importers/ImportBullet/SerializeDemo.cpp for a code example how to export a .bullet file.", SerializeBulletCreateFunc),
ExampleEntry(1, "Import .bullet", "Load a binary .bullet file. The serialization mechanism can deal with versioning, differences in endianness, 32 and 64bit, double/single precision. It is easy to save a .bullet file, see the examples/Importers/ImportBullet/SerializeDemo.cpp for a code example how to export a .bullet file.", SerializeBulletCreateFunc),
ExampleEntry(1, "Wavefront Obj", "Import a Wavefront .obj file", ImportObjCreateFunc, 0),
ExampleEntry(1, "Obj2RigidBody (Show Obj)", "Load a triangle mesh from Wavefront .obj and turn it in a convex hull collision shape, connected to a rigid body. We can use the original .obj mesh data to visualize the rigid body. In 'debug' wireframe mode (press 'w' to toggle) we still see the convex hull data.", ET_RigidBodyFromObjCreateFunc),
ExampleEntry(1, "Obj2RigidBody (Show Hull)", "Load a triangle mesh from Wavefront .obj and turn it in a convex hull collision shape, connected to a rigid body", ET_RigidBodyFromObjCreateFunc, ObjUseConvexHullForRendering),
Expand Down
2 changes: 1 addition & 1 deletion examples/ThirdPartyLibs/lua-5.2.3/src/luaconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@
** a single double value, using NaN values to represent non-number
** values. The trick only works on 32-bit machines (ints and pointers
** are 32-bit values) with numbers represented as IEEE 754-2008 doubles
** with conventional endianess (12345678 or 87654321), in CPUs that do
** with conventional endianness (12345678 or 87654321), in CPUs that do
** not produce signaling NaN values (all NaNs are quiet).
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Bullet3OpenCL/NarrowphaseCollision/b3QuantizedBvh.h
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ b3QuantizedBvh
b3Vector3 m_bvhQuantization;

protected:
int m_bulletVersion; //for serialization versioning. It could also be used to detect endianess.
int m_bulletVersion; //for serialization versioning. It could also be used to detect endianness.

int m_curNodeIndex;
//quantization data
Expand Down
2 changes: 1 addition & 1 deletion src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ btQuantizedBvh
btVector3 m_bvhAabbMax;
btVector3 m_bvhQuantization;

int m_bulletVersion; //for serialization versioning. It could also be used to detect endianess.
int m_bulletVersion; //for serialization versioning. It could also be used to detect endianness.

int m_curNodeIndex;
//quantization data
Expand Down