1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-29 14:00:49 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

25
src/AIS/AIS_Line.lxx Executable file
View File

@@ -0,0 +1,25 @@
// File: AIS_Line.lxx
// Created: Thu Mar 6 14:26:11 1997
// Author: Robert COUBLANC
// <rob@robox.paris1.matra-dtv.fr>
inline AIS_KindOfInteractive AIS_Line::Type() const
{return AIS_KOI_Datum;}
inline Standard_Integer AIS_Line::Signature() const
{return 5;}
inline const Handle(Geom_Line)& AIS_Line::Line() const
{return myComponent;}
inline void AIS_Line::Points( Handle(Geom_Point)& PStart,
Handle(Geom_Point)& PEnd) const
{ PStart = myStartPoint; PEnd = myEndPoint;}
inline void AIS_Line::SetLine(const Handle(Geom_Line)& L)
{myComponent =L;myLineIsSegment=Standard_False;}
inline void AIS_Line::SetPoints(const Handle(Geom_Point)& PStart,
const Handle(Geom_Point)& PEnd)
{
myStartPoint=PStart;
myEndPoint = PEnd;
myLineIsSegment=Standard_True;
}