SVX
From Just Solve the File Format Problem
(Difference between revisions)
AndyJackson (Talk | contribs) (Added initial SVX format entry) |
Dan Tobias (Talk | contribs) |
||
(One intermediate revision by one user not shown) | |||
Line 7: | Line 7: | ||
== Identification == | == Identification == | ||
− | An SVX file is a ZIP file containing a sequence of images and a <tt>manifest.xml</tt> file. This structure, and the manifest itself, can be used to identify the format. | + | An SVX file is a [[ZIP]] file containing a sequence of images and a <tt>manifest.xml</tt> file. This structure, and the manifest itself, can be used to identify the format. |
=== Example Manifest === | === Example Manifest === | ||
+ | This is an example manifest file, taken from the specification. | ||
+ | |||
<pre> | <pre> | ||
<?xml version="1.0"?> | <?xml version="1.0"?> | ||
Line 30: | Line 32: | ||
</grid> | </grid> | ||
</pre> | </pre> | ||
− | |||
== Specs == | == Specs == | ||
Line 37: | Line 38: | ||
== Other links == | == Other links == | ||
* [http://3dprint.com/17294/shapeways-svx-file-voxel/ Shapeways Announces New Pricing Scheme, and Creates Voxel Based SVX File Format] | * [http://3dprint.com/17294/shapeways-svx-file-voxel/ Shapeways Announces New Pricing Scheme, and Creates Voxel Based SVX File Format] | ||
+ | |||
+ | [[Category:ZIP based file formats]] |
Latest revision as of 12:11, 2 October 2014
SVX is voxel-based 3D modelling format created by Shapeways, to enable the upload of voxel-based models for 3D printing.
Contents |
[edit] Identification
An SVX file is a ZIP file containing a sequence of images and a manifest.xml file. This structure, and the manifest itself, can be used to identify the format.
[edit] Example Manifest
This is an example manifest file, taken from the specification.
<?xml version="1.0"?> <grid gridSizeX="256" gridSizeY="256" gridSizeZ="256" voxelSize="0.0001" subvoxelBits="8" slicesOrientation="Y" > <channels> <channel type="DENSITY" bits="8" slices="density/slice%04d.png" /> </channels> <materials> <material id="1" urn="urn:shapeways:materials/1" /> </materials> <metadata> <entry key="author" value="Alan Hudson" /> <entry key="creationDate" value="2014/09/12" /> </metadata> </grid>
[edit] Specs
- SVX format specification (license not stable yet, but expected to be open).