| 50 | |
| 51 | const Vector3D &ClippingProperty::GetNormal() const { return m_Normal; } |
| 52 | void ClippingProperty::SetNormal(const Vector3D &normal) |
| 53 | { |
| 54 | if (m_Normal != normal) |
| 55 | { |
| 56 | m_Normal = normal; |
| 57 | this->Modified(); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | bool ClippingProperty::IsEqual(const BaseProperty &property) const |
| 62 | { |