1 #ifndef COIN_SBCYLINDER_H     2 #define COIN_SBCYLINDER_H    38 #include <Inventor/SbBasic.h>    39 #include <Inventor/SbLine.h>    45   void setValue(
const SbLine& a, 
const float r);
    46   void setAxis(
const SbLine& a);
    47   void setRadius(
const float r);
    48   const SbLine& getAxis(
void) 
const;
    49   float getRadius(
void) 
const;
    50   SbBool intersect(
const SbLine& l, 
SbVec3f& intersection) 
const;
    53   void print(FILE * file) 
const;
    60 #endif // !COIN_SBCYLINDER_H The SbVec3f class is a 3 dimensional vector with floating point coordinates.This vector class is used...
Definition: SbVec3f.h:51
 
The SbLine class represents a line in 3D space.SbLine provides a way of specifying a directed line...
Definition: SbLine.h:41
 
The SbCylinder class is a representation of a cylinder.This class is used within other classes in Coi...
Definition: SbCylinder.h:41