Main Page   Compound List   Header Files   Compound Members   Examples  

The C++ Plane library.

1.0

Introduction

The (template) Plane library was created to find the intersection point of a line and a plane. The template parameter is a user's define datatype for the line.

User DataType requirements:

The template parameter is a user's define datatype which must have the following methods defined:
 1) Type get_x( ) const;
 2) Type get_y( ) const;
 3) Type get_z( ) const;
 4) void set_x( const Type x );
 5) void set_y( const Type y );
 6) void set_z( const Type z );


Generated at Wed Aug 30 15:49:18 2000 for Plane by doxygen 1.0.0 written by Dimitri van Heesch, © 1997-1999