44 lines
1.0 KiB
C++
44 lines
1.0 KiB
C++
// 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: G4Circle.cc,v 1.3 2001/02/03 18:29:52 johna Exp $
|
|
// GEANT4 tag $Name: geant4-03-01 $
|
|
//
|
|
//
|
|
|
|
#include "G4Circle.hh"
|
|
|
|
#include "G4VisAttributes.hh"
|
|
|
|
G4Circle::G4Circle () {}
|
|
|
|
G4Circle::G4Circle (const G4Point3D& pos):
|
|
G4VMarker (pos) {}
|
|
|
|
G4Circle::G4Circle (const G4VMarker& marker):
|
|
G4VMarker (marker) {}
|
|
|
|
G4Circle::~G4Circle () {}
|
|
|
|
G4Visible & G4Circle::operator = (const G4Visible &right) {
|
|
return G4Visible::operator = (right);
|
|
}
|
|
|
|
G4VVisPrim & G4Circle::operator = (const G4VVisPrim &right) {
|
|
return G4VVisPrim::operator = (right);
|
|
}
|
|
|
|
G4VMarker & G4Circle::operator = (const G4VMarker &right) {
|
|
return G4VMarker::operator = (right);
|
|
}
|
|
|
|
G4Circle& G4Circle::operator = (const G4Circle& right) {
|
|
if (&right == this) return *this;
|
|
G4VMarker::operator = (right);
|
|
return *this;
|
|
}
|