CurveCreator::Coordinates aCurveCoords;
CurveCreator::SectionsMap aSectionsMap;
- HYDROData_Profile::ProfilePoints aSectPointsList = myEditedObject->GetProfilePoints();
+ HYDROData_ProfileUZ::PointsList aSectPointsList = myEditedObject->GetParametricPoints();
CurveCreator::PosPointsList aPoints;
for ( int k = 1, aNbPoints = aSectPointsList.Size(); k <= aNbPoints; ++k )
{
- const HYDROData_Profile::ProfilePoint& aSectPoint = aSectPointsList.Value( k );
+ const HYDROData_ProfileUZ::Point& aSectPoint = aSectPointsList.Value( k );
aCurveCoords.clear();
aCurveCoords.push_back( aSectPoint.X() );
- aCurveCoords.push_back( aSectPoint.Z() );
+ aCurveCoords.push_back( aSectPoint.Y() );
CurveCreator_PosPoint* aPosPoint = new CurveCreator_PosPoint( k, aCurveCoords );
aPoints.push_back( aPosPoint );