82 lines
2.1 KiB
C++
82 lines
2.1 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: G4BSplineCurve.hh,v 1.4.2.1 1999/12/07 20:48:17 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
#ifndef __BSPLINECURVE_H
|
|
#define __BSPLINECURVE_H
|
|
|
|
#include "g4rw/tvvector.h"
|
|
#include "G4Curve.hh"
|
|
|
|
class G4ControlPoints;
|
|
class G4KnotVector;
|
|
|
|
class G4BSplineCurve : public G4Curve
|
|
{
|
|
public:
|
|
|
|
typedef G4RWTValVector<G4double> G4doubleVector;
|
|
typedef G4RWTValVector<G4Point3D> G4Point3DVector;
|
|
|
|
public:
|
|
|
|
G4BSplineCurve();
|
|
~G4BSplineCurve();
|
|
|
|
virtual G4Curve* Project(const G4Transform3D& tr=
|
|
G4Transform3D::Identity);
|
|
|
|
virtual G4bool Tangent(G4CurvePoint& cp, G4Vector3D& v);
|
|
//virtual void IntersectRay2D(const G4Ray& ray, G4CurveRayIntersection& is);
|
|
virtual G4int IntersectRay2D(const G4Ray& ray);
|
|
virtual G4double GetPMax();
|
|
virtual G4Point3D GetPoint(G4double param);
|
|
virtual G4double GetPPoint(const G4Point3D& p);
|
|
|
|
// Get/Set for the geometric data
|
|
//
|
|
// knots contains each knot multiplicity Times,
|
|
// thus knot_multiplicities is not needed
|
|
// weightsData might be 0
|
|
// curve_form, closed_curve, self_intersect is not used,
|
|
// as they are unreliable sources of information
|
|
//
|
|
// the object is responsible for deleting the containers passed to Init
|
|
|
|
void Init(G4int degree0, G4Point3DVector* controlPointsList0,
|
|
G4doubleVector* knots0, G4doubleVector* weightsData0);
|
|
|
|
G4int GetDegree() const;
|
|
const G4Point3DVector* GetControlPointsList() const;
|
|
const G4doubleVector* GetKnots() const;
|
|
const G4doubleVector* GetWeightsData() const;
|
|
|
|
protected:
|
|
|
|
virtual void InitBounded();
|
|
|
|
//public:
|
|
//void ProjectCurve(const G4Plane&, const G4Plane&);
|
|
//int Inside(const G4Point3d&, const G4Ray&);
|
|
//void CalcCurvePlaneNormal();
|
|
|
|
protected:
|
|
|
|
// geometric data
|
|
G4int degree;
|
|
G4Point3DVector* controlPointsList;
|
|
G4doubleVector* knots;
|
|
G4doubleVector* weightsData;
|
|
|
|
};
|
|
|
|
#include "G4BSplineCurve.icc"
|
|
|
|
#endif
|