git-svn-id: svn://db.shs.com.ru/pip@149 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2015-08-24 10:03:57 +00:00
parent c0cb210695
commit 5dc43c5e19
2 changed files with 4 additions and 1 deletions

View File

@@ -138,6 +138,9 @@ public:
/// Computes the radius of curvature in the prime vertical (Rn) corresponding to this PIGeoPosition. /// Computes the radius of curvature in the prime vertical (Rn) corresponding to this PIGeoPosition.
double getCurvPrimeVertical() const; double getCurvPrimeVertical() const;
/// Returns as PIMathVectorT3d
const PIMathVectorT3d & vector() const {return *this;}
// PIGeoPosition &operator=(const PIGeoPosition & v); // PIGeoPosition &operator=(const PIGeoPosition & v);
PIGeoPosition &operator=(const PIMathVectorT3d & v); PIGeoPosition &operator=(const PIMathVectorT3d & v);
PIGeoPosition &operator-=(const PIGeoPosition &right); PIGeoPosition &operator-=(const PIGeoPosition &right);

View File

@@ -172,7 +172,7 @@ void writeModel(PICodeParser & parser, const PIString out, bool only_enums) {
entry << "}\n"; entry << "}\n";
} }
if (efunc) continue; if (efunc) continue;
f << entry << "\tPICout(AddNewLine) << \"Can`t find function \\\"\" << function << \"\\\" in " f << entry << "\tPICout(PICoutManipulators::AddNewLine) << \"Can`t find function \\\"\" << function << \"\\\" in "
<< e->type << " \\\"" << e->name << "\\\"!\";\n\treturn PIVariant();\n}\n"; << e->type << " \\\"" << e->name << "\\\"!\";\n\treturn PIVariant();\n}\n";
ventities << e; ventities << e;
} }