Difference between revisions of "NewtonSphereParam"

From Newton Wiki
Jump to: navigation, search
(Created page with "<source lang="cpp"> typedef struct NewtonSphereParam { dFloat m_radio; } NewtonSphereParam; </source>")
 
 
Line 1: Line 1:
 
<source lang="cpp">
 
<source lang="cpp">
  
typedef struct NewtonSphereParam
+
typedef struct NewtonCapsuleParam
 
{
 
{
dFloat m_radio;
+
dFloat m_radio0;
} NewtonSphereParam;
+
dFloat m_radio1;
 +
dFloat m_height;
 +
} NewtonCapsuleParam;
  
 
</source>
 
</source>

Latest revision as of 05:58, 18 June 2019

	typedef struct NewtonCapsuleParam
	{
		dFloat m_radio0;
		dFloat m_radio1;
		dFloat m_height;
	} NewtonCapsuleParam;