コード例 #1
0
ファイル: Transform.cpp プロジェクト: nicoduce/gaffer
IECore::MurmurHash Transform::fullParentTransformHash( const ScenePath &path ) const
{
	ScenePath parentPath = path;
	parentPath.pop_back();
	return inPlug()->fullTransformHash( parentPath );
}
コード例 #2
0
ファイル: Transform.cpp プロジェクト: nicoduce/gaffer
Imath::M44f Transform::fullParentTransform( const ScenePath &path ) const
{
	ScenePath parentPath = path;
	parentPath.pop_back();
	return inPlug()->fullTransform( parentPath );
}