~jtaylor/ubuntu/oneiric/soya/fix-780305

« back to all changes in this revision

Viewing changes to ode-0.5/contrib/dCylinder/dCylinder.h

  • Committer: Bazaar Package Importer
  • Author(s): Marc Dequènes (Duck)
  • Date: 2005-01-30 09:55:06 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050130095506-f21p6v6cgaobhn5j
Tags: 0.9.2-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef dCylinder_h
 
3
#define dCylinder_h
 
4
 
 
5
struct dxCylinder;
 
6
extern int dCylinderClassUser;
 
7
 
 
8
 
 
9
dxGeom *dCreateCylinder (dSpaceID space, dReal r, dReal lz);
 
10
void dGeomCylinderSetParams (dGeomID g, dReal radius, dReal length);
 
11
 
 
12
void dGeomCylinderGetParams (dGeomID g, dReal *radius, dReal *length);
 
13
#endif //dCylinder_h
 
14