mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-25 12:04:07 +03:00
27 lines
685 B
Plaintext
Executable File
27 lines
685 B
Plaintext
Executable File
// File: BRep_CurveRepresentation.lxx
|
|
// Created: Fri Jul 9 14:24:02 1993
|
|
// Author: Remi LEQUETTE
|
|
// <rle@nonox>
|
|
|
|
|
|
//=======================================================================
|
|
//function : Location
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline const TopLoc_Location& BRep_CurveRepresentation::Location()const
|
|
{
|
|
return myLocation;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Location
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline void BRep_CurveRepresentation::Location (const TopLoc_Location& L)
|
|
{
|
|
myLocation = L;
|
|
}
|
|
|