DAE (.dae)
Background
|
|
Import and Export
- Import["file.dae"] imports a DAE file as a MeshRegion object representing the surface.
- Import["file.dae",elem] imports the specified element from a DAE file.
- The import format can be specified with Import["file","DAE"] or Import["file",{"DAE",elem,…}].
- Export["file.dae",expr] exports a 3D mesh-based geometric region to a binary DAE file. The expr can be any region that is ConstantRegionQ or a Graphics or Graphics3D object.
- Export["file.dae",expr,{opt1->val1,…}] exports expr with the specified options for the file format.
- The export format can be specified with Export["file",expr,"DAE"] or Export["file",expr,{"DAE,opt1->val1,…}].
- See the reference pages for full general information on Import and Export.
- ImportString and ExportString support the DAE format.
Elements
- General Import elements:
-
"Elements" list of elements available in this file "Rules" list of rules for each element "Options" list of options and settings "Summary" summary of properties "CoordinateTransform" transformation function from DAE format - Data format representation elements:
-
"VertexData" list of vertex coordinates "PolygonData" the polygon elements in indexed form "VertexNormals" normal vectors corresponding to the vertices - Geometry representation elements:
-
"BoundaryMeshRegion" boundary mesh representation of a solid "MeshRegion" mesh representation of a surface - Graphics representation elements:
-
"Graphics3D" DAE file represented as a Graphics3D object "GraphicsComplex" DAE file as a GraphicsComplex object "PolygonObjects" list of polygon primitives given in absolute coordinates - Import and Export use the "MeshRegion" element by default for DAE files.
Examples
open allclose allBasic Examples (2)
Import a 3D model from DAE as a MeshRegion object:
Summary properties of the model:
Scope (12)
Import Elements (10)
See Also
"3DS" "BYU" "JVX" "LWO" "Maya" "NOFF" "OBJ" "OFF" "PLY" "POV" "RIB" "STL" "VRML" "X3D" "ZPR"
Tutorials
Related Guides
Introduced in 2016
(10.4)