Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(642)

Unified Diff: maya/AbcExport/MayaUtility.h

Issue 4662068: Alembic 1.0rc1, changes since 0.9.3
Patch Set: Created 12 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « maya/AbcExport/MayaTransformWriter.cpp ('k') | maya/AbcExport/MayaUtility.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: maya/AbcExport/MayaUtility.h
===================================================================
--- a/maya/AbcExport/MayaUtility.h
+++ b/maya/AbcExport/MayaUtility.h
@@ -104,12 +104,23 @@
// determine if a Maya Object is intermediate
bool isIntermediate(const MObject & object);
+
+// returns true for visible and lod invisible and not templated objects
+bool isRenderable(const MObject & object);
+
+// strip all namespaces from the node name, go from taco:foo:bar to bar
+MString stripNamespaces(const MString & iNodeName);
+
+// returns the Help string for AbcExport
+MString getHelpText();
+
} // namespace util
struct PlugAndObjScalar
{
MPlug plug;
MObject obj;
+ Alembic::Abc::OObject propParent;
Alembic::Abc::OScalarProperty prop;
};
@@ -120,4 +131,35 @@
Alembic::Abc::OArrayProperty prop;
};
+struct JobArgs
+{
+ JobArgs()
+ {
+ excludeInvisible = false;
+ noNormals = false;
+ stripNamespace = false;
+ useSelectionList = false;
+ worldSpace = false;
+ writeVisibility = false;
+ writeUVs = false;
+ }
+
+ bool excludeInvisible;
+ bool noNormals;
+ bool stripNamespace;
+ bool useSelectionList;
+ bool worldSpace;
+ bool writeVisibility;
+ bool writeUVs;
+
+ std::string melPerFrameCallback;
+ std::string melPostCallback;
+ std::string pythonPerFrameCallback;
+ std::string pythonPostCallback;
+
+ std::vector< std::string > prefixFilters;
+ std::set< std::string > attribs;
+ util::ShapeSet dagPaths;
+};
+
#endif // _AlembicExport_MayaUtility_h_
« no previous file with comments | « maya/AbcExport/MayaTransformWriter.cpp ('k') | maya/AbcExport/MayaUtility.cpp » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b