Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Niflib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Grant Kim
Niflib
Commits
b8d12f69
Commit
b8d12f69
authored
16 years ago
by
Amorilia
Browse files
Options
Downloads
Patches
Plain Diff
niflib: another gcc build fix
parent
9b243730
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/Inertia.h
+14
-7
14 additions, 7 deletions
include/Inertia.h
with
14 additions
and
7 deletions
include/Inertia.h
+
14
−
7
View file @
b8d12f69
...
...
@@ -64,12 +64,19 @@ public:
public:
// gcc does not like __stdcall
#ifdef __GNUC__
# define NIFLIB_STDCALL
#else
# define NIFLIB_STDCALL __stdcall
#endif
// Define external strategy helpers
/*! Return mass and inertia matrix for a sphere of given radius and
* density.
*/
typedef
void
(
__stdcall
*
fnCalcMassPropertiesSphere
)(
typedef
void
(
NIFLIB_STDCALL
*
fnCalcMassPropertiesSphere
)(
float
radius
,
float
density
,
bool
solid
,
float
&
mass
,
float
&
volume
,
Vector3
&
center
,
InertiaMatrix
&
inertia
);
...
...
@@ -77,7 +84,7 @@ public:
/*! Return mass and inertia matrix for a box of given size and
* density.
*/
typedef
void
(
__stdcall
*
fnCalcMassPropertiesBox
)(
typedef
void
(
NIFLIB_STDCALL
*
fnCalcMassPropertiesBox
)(
Vector3
size
,
float
density
,
bool
solid
,
float
&
mass
,
float
&
volume
,
Vector3
&
center
,
InertiaMatrix
&
inertia
);
...
...
@@ -85,7 +92,7 @@ public:
/*! Return mass and inertia matrix for a cylinder of given radius,
* height and density.
*/
typedef
void
(
__stdcall
*
fnCalcMassPropertiesCylinder
)(
typedef
void
(
NIFLIB_STDCALL
*
fnCalcMassPropertiesCylinder
)(
Vector3
startAxis
,
Vector3
endAxis
,
float
radius
,
float
density
,
bool
solid
,
float
&
mass
,
float
&
volume
,
Vector3
&
center
,
InertiaMatrix
&
inertia
);
...
...
@@ -93,7 +100,7 @@ public:
/*! Return mass and inertia matrix for a capsule of given radius,
* height and density.
*/
typedef
void
(
__stdcall
*
fnCalcMassPropertiesCapsule
)(
typedef
void
(
NIFLIB_STDCALL
*
fnCalcMassPropertiesCapsule
)(
Vector3
startAxis
,
Vector3
endAxis
,
float
radius
,
float
density
,
bool
solid
,
float
&
mass
,
float
&
volume
,
Vector3
&
center
,
InertiaMatrix
&
inertia
);
...
...
@@ -101,14 +108,14 @@ public:
/*! Return mass and inertia matrix for a capsule of given radius,
* height and density.
*/
typedef
void
(
__stdcall
*
fnCalcMassPropertiesPolyhedron
)(
typedef
void
(
NIFLIB_STDCALL
*
fnCalcMassPropertiesPolyhedron
)(
int
nVerts
,
Vector3
const
*
verts
,
int
nTris
,
Triangle
const
*
tris
,
float
density
,
bool
solid
,
float
&
mass
,
float
&
volume
,
Vector3
&
center
,
InertiaMatrix
&
inertia
);
/*! Combine mass properties for a number of objects */
typedef
void
(
__stdcall
*
fnCombineMassProperties
)(
typedef
void
(
NIFLIB_STDCALL
*
fnCombineMassProperties
)(
int
nItems
,
float
*
masses
,
float
*
volumes
,
Vector3
*
centers
,
InertiaMatrix
*
inertias
,
Matrix44
*
transforms
,
float
&
mass
,
float
&
volume
,
Vector3
&
center
,
InertiaMatrix
&
inertia
);
...
...
@@ -137,4 +144,4 @@ private:
};
}
#endif
\ No newline at end of file
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment