Exemple #1
0
void CProfile::GetProperties(std::list<Property *> *list)
{
#ifdef OP_SKETCHES_AS_CHILDREN
	AddSketchesProperties(list, this);
#else
	AddSketchesProperties(list, m_sketches);
#endif
	m_profile_params.GetProperties(this, list);

	CDepthOp::GetProperties(list);
}
Exemple #2
0
void CAdaptive::GetProperties(std::list<Property *> *list)
{
	AddSolidsProperties(list, this);
	AddSketchesProperties(list, this);
	m_params.GetProperties(this, list);
	COp::GetProperties(list);
}