corrected the ImportData of the curvature type.
This commit is contained in:
parent
ffb02815a8
commit
3b38917e95
|
@ -421,7 +421,8 @@ public:
|
||||||
template < class RightValueType>
|
template < class RightValueType>
|
||||||
void ImportData(const RightValueType & rVert ) {
|
void ImportData(const RightValueType & rVert ) {
|
||||||
if(rVert.IsCurvatureDirEnabled()) {
|
if(rVert.IsCurvatureDirEnabled()) {
|
||||||
PD1() = rVert.cPD1(); PD2() = rVert.cPD2();
|
PD1().Import(rVert.cPD1());
|
||||||
|
PD2().Import(rVert.cPD2());
|
||||||
K1() = rVert.cK1(); K2() = rVert.cK2();
|
K1() = rVert.cK1(); K2() = rVert.cK2();
|
||||||
}
|
}
|
||||||
TT::ImportData( rVert);
|
TT::ImportData( rVert);
|
||||||
|
|
Loading…
Reference in New Issue