-- File: PGeom_Hyperbola.cdl -- Created: Mon Feb 22 18:37:04 1993 -- Author: Philippe DAUTRY -- -- Copyright: Matra Datavision 1993 class Hyperbola from PGeom inherits Conic from PGeom ---Purpose :Defines the main branch of an hyperbola. -- ---See Also : Hyperbola from Geom. uses Ax2 from gp is Create returns mutable Hyperbola from PGeom; ---Purpose :Creates an Hyperbola with default values. ---Level: Internal Create (aPosition : Ax2 from gp; aMajorRadius, aMinorRadius : Real from Standard) returns mutable Hyperbola from PGeom; ---Purpose : Creates an Hyperbola with , -- and as field values. -- The major radius of the hyperbola is on the XAxis -- and the minor radius is on the YAxis of the -- hyperbola. ---Level: Internal MajorRadius (me : mutable; aMajorRadius : Real from Standard); ---Purpose: Set the value of the field majorRadius with . ---Level: Internal MajorRadius (me) returns Real from Standard; ---Purpose: Returns the value of the field majorRadius. ---Level: Internal MinorRadius (me : mutable; aMinorRadius : Real from Standard); ---Purpose: Set the value of the field minorRadius with . ---Level: Internal MinorRadius (me) returns Real from Standard; ---Purpose: Returns the value of the field minorRadius. ---Level: Internal fields majorRadius : Real from Standard; minorRadius : Real from Standard; end;