Files
lace/3-mid/physics/interface/source/physics-joint-dof6.ads
2022-07-31 17:34:54 +10:00

23 lines
767 B
Ada

package physics.Joint.DoF6
--
-- An interface to a general 'six degrees of freedom' joint.
--
is
type Item is limited interface
and Joint.item;
type View is access all Item'Class;
function lower_Limit (Self : in Item; DoF : in Degree_of_freedom) return Real is abstract;
function upper_Limit (Self : in Item; DoF : in Degree_of_freedom) return Real is abstract;
procedure lower_Limit_is (Self : in out Item; Now : in Real;
DoF : in Degree_of_freedom) is abstract;
procedure upper_Limit_is (Self : in out Item; Now : in Real;
DoF : in Degree_of_freedom) is abstract;
end physics.Joint.DoF6;