Update source to v6.11.18282.01000

This commit is contained in:
Will Pearson
2018-10-10 22:43:34 +01:00
parent 08ba072313
commit 80b0545f2b
93 changed files with 8784 additions and 2972 deletions

View File

@@ -666,6 +666,21 @@ bool ON_SubDVertex::GetLimitPoint(
return rc;
}
ON_SubD::SubDType ON_SubDVertex::GetSavedLimitPointLocation(
double limit_point[3]
) const
{
const ON_SubD::SubDType subd_type = SavedLimitPointType();
if (ON_SubD::SubDType::Unset != subd_type)
{
limit_point[0] = m_limit_point.m_limitP[0];
limit_point[1] = m_limit_point.m_limitP[1];
limit_point[2] = m_limit_point.m_limitP[2];
}
return subd_type;
}
static bool SetLimitPointSectorCheck(
const ON_SubDVertex* vertex,
ON_SubDSectorLimitPoint& limit_point