Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/alembic/intern/abc_reader_object.cc
| Show First 20 Lines • Show All 91 Lines • ▼ Show 20 Lines | if (!ixform_parent.getParent()) { | ||||
| * it as "no parent". */ | * it as "no parent". */ | ||||
| m_inherits_xform = false; | m_inherits_xform = false; | ||||
| } | } | ||||
| else { | else { | ||||
| m_inherits_xform = ixform_parent && m_inherits_xform; | m_inherits_xform = ixform_parent && m_inherits_xform; | ||||
| } | } | ||||
| } | } | ||||
| AbcObjectReader::~AbcObjectReader() | |||||
| { | |||||
| } | |||||
| const IObject &AbcObjectReader::iobject() const | const IObject &AbcObjectReader::iobject() const | ||||
| { | { | ||||
| return m_iobject; | return m_iobject; | ||||
| } | } | ||||
| Object *AbcObjectReader::object() const | Object *AbcObjectReader::object() const | ||||
| { | { | ||||
| return m_object; | return m_object; | ||||
| ▲ Show 20 Lines • Show All 222 Lines • Show Last 20 Lines | |||||