mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
296 lines
9.4 KiB
C++
296 lines
9.4 KiB
C++
// Created on: 1993-03-24
|
|
// Created by: JCV
|
|
// Copyright (c) 1993-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
|
|
#include <ElCLib.hxx>
|
|
#include <Geom2d_Geometry.hxx>
|
|
#include <Geom2d_Line.hxx>
|
|
#include <gp_Ax2d.hxx>
|
|
#include <gp_Dir2d.hxx>
|
|
#include <gp_Lin2d.hxx>
|
|
#include <gp_Pnt2d.hxx>
|
|
#include <gp_Trsf2d.hxx>
|
|
#include <gp_Vec2d.hxx>
|
|
#include <gp_XY.hxx>
|
|
#include <Precision.hxx>
|
|
#include <Standard_RangeError.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(Geom2d_Line,Geom2d_Curve)
|
|
|
|
typedef Geom2d_Line Line;
|
|
typedef gp_Ax2d Ax2d;
|
|
typedef gp_Dir2d Dir2d;
|
|
typedef gp_Pnt2d Pnt2d;
|
|
typedef gp_Vec2d Vec2d;
|
|
typedef gp_Trsf2d Trsf2d;
|
|
typedef gp_XY XY;
|
|
|
|
//=======================================================================
|
|
//function : Copy
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(Geom2d_Geometry) Geom2d_Line::Copy() const
|
|
{
|
|
Handle(Geom2d_Line) L;
|
|
L = new Line (pos);
|
|
return L;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Geom2d_Line
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Geom2d_Line::Geom2d_Line (const Ax2d& A) : pos (A) { }
|
|
|
|
//=======================================================================
|
|
//function : Geom2d_Line
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Geom2d_Line::Geom2d_Line (const gp_Lin2d& L) : pos (L.Position()) { }
|
|
|
|
//=======================================================================
|
|
//function : Geom2d_Line
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Geom2d_Line::Geom2d_Line (const Pnt2d& P, const Dir2d& V) : pos (P, V) { }
|
|
|
|
//=======================================================================
|
|
//function : SetDirection
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Geom2d_Line::SetDirection (const Dir2d& V) { pos.SetDirection (V); }
|
|
|
|
//=======================================================================
|
|
//function : Direction
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const gp_Dir2d& Geom2d_Line::Direction () const { return pos.Direction (); }
|
|
|
|
//=======================================================================
|
|
//function : SetLin2d
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Geom2d_Line::SetLin2d (const gp_Lin2d& L) { pos = L.Position(); }
|
|
|
|
//=======================================================================
|
|
//function : SetLocation
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Geom2d_Line::SetLocation (const Pnt2d& P) { pos.SetLocation (P); }
|
|
|
|
//=======================================================================
|
|
//function : Location
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const gp_Pnt2d& Geom2d_Line::Location () const { return pos.Location (); }
|
|
|
|
//=======================================================================
|
|
//function : SetPosition
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Geom2d_Line::SetPosition (const Ax2d& A) { pos = A; }
|
|
|
|
//=======================================================================
|
|
//function : Position
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const gp_Ax2d& Geom2d_Line::Position () const { return pos; }
|
|
|
|
//=======================================================================
|
|
//function : Lin2d
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
gp_Lin2d Geom2d_Line::Lin2d () const { return gp_Lin2d (pos); }
|
|
|
|
//=======================================================================
|
|
//function : Reverse
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Geom2d_Line::Reverse () { pos.Reverse(); }
|
|
|
|
//=======================================================================
|
|
//function : ReversedParameter
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Real Geom2d_Line::ReversedParameter( const Standard_Real U) const { return (-U); }
|
|
|
|
//=======================================================================
|
|
//function : FirstParameter
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Real Geom2d_Line::FirstParameter () const
|
|
{ return -Precision::Infinite(); }
|
|
|
|
//=======================================================================
|
|
//function : LastParameter
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Real Geom2d_Line::LastParameter () const
|
|
{ return Precision::Infinite(); }
|
|
|
|
//=======================================================================
|
|
//function : IsClosed
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean Geom2d_Line::IsClosed () const { return Standard_False; }
|
|
|
|
//=======================================================================
|
|
//function : IsPeriodic
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean Geom2d_Line::IsPeriodic () const { return Standard_False; }
|
|
|
|
//=======================================================================
|
|
//function : Continuity
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
GeomAbs_Shape Geom2d_Line::Continuity () const { return GeomAbs_CN; }
|
|
|
|
//=======================================================================
|
|
//function : IsCN
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean Geom2d_Line::IsCN (const Standard_Integer ) const { return Standard_True; }
|
|
|
|
//=======================================================================
|
|
//function : D0
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Geom2d_Line::D0 (const Standard_Real U, Pnt2d& P) const
|
|
{
|
|
P = ElCLib::LineValue (U, pos);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : D1
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Geom2d_Line::D1 (const Standard_Real U, Pnt2d& P, Vec2d& V1) const
|
|
{
|
|
ElCLib::LineD1 (U, pos, P, V1);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : D2
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Geom2d_Line::D2 (const Standard_Real U,
|
|
Pnt2d& P,
|
|
Vec2d& V1, Vec2d& V2) const
|
|
{
|
|
ElCLib::LineD1 (U, pos, P, V1);
|
|
V2.SetCoord (0.0, 0.0);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : D3
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Geom2d_Line::D3 (const Standard_Real U,
|
|
Pnt2d& P,
|
|
Vec2d& V1, Vec2d& V2, Vec2d& V3) const
|
|
{
|
|
ElCLib::LineD1 (U, pos, P, V1);
|
|
V2.SetCoord (0.0, 0.0);
|
|
V3.SetCoord (0.0, 0.0);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : DN
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Vec2d Geom2d_Line::DN
|
|
(const Standard_Real ,
|
|
const Standard_Integer N ) const
|
|
{
|
|
Standard_RangeError_Raise_if (N <= 0, " ");
|
|
if (N == 1)
|
|
return Vec2d (pos.Direction ());
|
|
else
|
|
return Vec2d (0.0, 0.0);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Transform
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void Geom2d_Line::Transform (const Trsf2d& T) { pos.Transform (T); }
|
|
|
|
//=======================================================================
|
|
//function : TransformedParameter
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Real Geom2d_Line::TransformedParameter(const Standard_Real U,
|
|
const gp_Trsf2d& T) const
|
|
{
|
|
if (Precision::IsInfinite(U)) return U;
|
|
return U * Abs(T.ScaleFactor());
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ParametricTransformation
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Real Geom2d_Line::ParametricTransformation(const gp_Trsf2d& T) const
|
|
{
|
|
return Abs(T.ScaleFactor());
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Distance
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Real Geom2d_Line::Distance (const gp_Pnt2d& P) const {
|
|
|
|
gp_Lin2d L (pos);
|
|
return L.Distance (P);
|
|
}
|
|
|