// File: Geom2d_VectorWithMagnitude.cxx // Created: Wed Mar 24 19:32:14 1993 // Author: JCV // // Copyright: Matra Datavision 1993 //File Geom2d_VectorWithMagnitude.cxx, JCV 16/01/91 #include typedef Geom2d_Vector Vector; typedef Geom2d_VectorWithMagnitude VectorWithMagnitude; typedef Handle(Geom2d_VectorWithMagnitude) Handle(VectorWithMagnitude); typedef Handle(Geom2d_Vector) Handle(Vector); typedef gp_Ax2d Ax2d; typedef gp_Pnt2d Pnt2d; typedef gp_Trsf2d Trsf2d; Geom2d_VectorWithMagnitude::Geom2d_VectorWithMagnitude (const gp_Vec2d& V) { gpVec2d = V; } Geom2d_VectorWithMagnitude::Geom2d_VectorWithMagnitude ( const Standard_Real X, const Standard_Real Y) { gpVec2d = gp_Vec2d (X, Y); } Geom2d_VectorWithMagnitude::Geom2d_VectorWithMagnitude ( const Pnt2d& P1, const Pnt2d& P2) { gpVec2d = gp_Vec2d (P1, P2); } Handle(Geom2d_Geometry) Geom2d_VectorWithMagnitude::Copy() const { Handle(VectorWithMagnitude) V; V = new VectorWithMagnitude (gpVec2d); return V; } void Geom2d_VectorWithMagnitude::SetCoord (const Standard_Real X, const Standard_Real Y) { gpVec2d = gp_Vec2d (X, Y); } void Geom2d_VectorWithMagnitude::SetVec2d (const gp_Vec2d& V) { gpVec2d = V; } void Geom2d_VectorWithMagnitude::SetX (const Standard_Real X) { gpVec2d.SetX (X); } void Geom2d_VectorWithMagnitude::SetY (const Standard_Real Y) { gpVec2d.SetY (Y); } Standard_Real Geom2d_VectorWithMagnitude::Magnitude () const { return gpVec2d.Magnitude (); } Standard_Real Geom2d_VectorWithMagnitude::SquareMagnitude () const { return gpVec2d.SquareMagnitude (); } void Geom2d_VectorWithMagnitude::Add (const Handle(Vector)& Other) { gpVec2d.Add (Other->Vec2d()); } Handle(VectorWithMagnitude) Geom2d_VectorWithMagnitude::Added ( const Handle(Vector)& Other) const { gp_Vec2d Temp = Other->Vec2d(); Temp.Add (gpVec2d); return new VectorWithMagnitude (Temp); } Standard_Real Geom2d_VectorWithMagnitude::Crossed (const Handle(Vector)& Other) const{ return gpVec2d.Crossed (Other->Vec2d()); } void Geom2d_VectorWithMagnitude::Divide (const Standard_Real Scalar) { gpVec2d.Divide (Scalar); } Handle(VectorWithMagnitude) Geom2d_VectorWithMagnitude::Divided ( const Standard_Real Scalar) const { gp_Vec2d V (gpVec2d); V.Divide (Scalar); return new VectorWithMagnitude (V); } Handle(VectorWithMagnitude) Geom2d_VectorWithMagnitude::Multiplied ( const Standard_Real Scalar) const { gp_Vec2d V(gpVec2d); V.Multiply (Scalar); return new VectorWithMagnitude (V); } void Geom2d_VectorWithMagnitude::Multiply (const Standard_Real Scalar) { gpVec2d.Multiply (Scalar); } void Geom2d_VectorWithMagnitude::Normalize () { gpVec2d.Normalize (); } Handle(VectorWithMagnitude) Geom2d_VectorWithMagnitude::Normalized () const { gp_Vec2d V = gpVec2d; V.Normalized (); return new VectorWithMagnitude (V); } void Geom2d_VectorWithMagnitude::Subtract (const Handle(Vector)& Other) { gpVec2d.Subtract (Other->Vec2d()); } Handle(VectorWithMagnitude) Geom2d_VectorWithMagnitude::Subtracted ( const Handle(Vector)& Other) const { gp_Vec2d V = gpVec2d; V.Subtract (Other->Vec2d()); return new VectorWithMagnitude (V); } void Geom2d_VectorWithMagnitude::Transform (const Trsf2d& T) { gpVec2d.Transform (T); }