47 egsWarning(
"createGeometry(cylinders): null input?\n");
51 int err = input->
getInput(
"type",type);
53 egsWarning(
"createGeometry(cylinders): missing type key\n");
60 err = input->
getInput(
"midpoint",Xo);
61 if (!err && Xo.size() == 3) {
66 vector<EGS_Float> radii;
67 err = input->
getInput(
"radii",radii);
69 egsWarning(
"createGeometry(cylinders): wrong/missing 'radii' input\n");
72 EGS_Float *r=
new EGS_Float [radii.size()];
73 for (
int i=0; i<radii.size(); i++) {
79 if (type ==
"EGS_XCylinders") {
82 else if (type ==
"EGS_YCylinders") {
85 else if (type ==
"EGS_ZCylinders") {
91 if (err || a.size() != 3) {
92 egsWarning(
"createGeometry(cylinders): missing/wrong axis input\n");
95 egsWarning(
"got axis (%g,%g,%g)\n",a[0],a[1],a[2]);
Base geometry class. Every geometry class must be derived from EGS_BaseGeometry.
void setMedia(EGS_Input *inp)
Set the media in the geometry from the input pointed to by inp.
void setName(EGS_Input *inp)
Set the name of the geometry from the input inp.
int setLabels(EGS_Input *input)
Set the labels from an input block.
void setBoundaryTolerance(EGS_Input *inp)
Set the value of the boundary tolerance from the input inp.
A set of concentric cylinders.
A projector into any plane.
A class representing 3D vectors.
A projector into the x-plane.
A projector into the y-plane.
A projector into the z-plane.
A set of concentric cylinders: header.
EGS_GLIB_EXPORT EGS_BaseGeometry * createGeometry(EGS_Input *input)
EGS_InfoFunction EGS_EXPORT egsWarning
Always use this function for reporting warnings.