Files
geant4/source/geometry/solids/BREPS/include/G4CircularCurve.icc
T
2016-06-08 15:55:53 +02:00

32 lines
840 B
Plaintext

// This code implementation is the intellectual property of
// the GEANT4 collaboration.
//
// By copying, distributing or modifying the Program (or any work
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4CircularCurve.icc,v 1.4 2000/08/28 15:00:31 gcosmo Exp $
// GEANT4 tag $Name: geant4-03-00 $
//
// --------------------------------------------------------------------
// GEANT 4 inline definitions file
//
// G4CircularCurve.icc
//
// Implementation of inline methods of G4CircularCurve
// --------------------------------------------------------------------
inline
void G4CircularCurve::Init(const G4Axis2Placement3D& position0,
G4double radius0)
{
position= position0;
radius= radius0;
}
inline
G4double G4CircularCurve::GetRadius() const
{
return radius;
}