corrected the ImportData of the curvature type.

This commit is contained in:
Paolo Cignoni 2014-08-09 00:11:32 +00:00
parent ffb02815a8
commit 3b38917e95
1 changed files with 2 additions and 1 deletions

View File

@ -421,7 +421,8 @@ public:
template < class RightValueType>
void ImportData(const RightValueType & rVert ) {
if(rVert.IsCurvatureDirEnabled()) {
PD1() = rVert.cPD1(); PD2() = rVert.cPD2();
PD1().Import(rVert.cPD1());
PD2().Import(rVert.cPD2());
K1() = rVert.cK1(); K2() = rVert.cK2();
}
TT::ImportData( rVert);