コード例 #1
0
ファイル: Profile.cpp プロジェクト: DesignerMK/heekscnc
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);
}
コード例 #2
0
ファイル: Adaptive.cpp プロジェクト: JonasThomas/heekscnc
void CAdaptive::GetProperties(std::list<Property *> *list)
{
	AddSolidsProperties(list, this);
	AddSketchesProperties(list, this);
	m_params.GetProperties(this, list);
	COp::GetProperties(list);
}