STEP — AP214 Cube Corner Points
A minimal, well-formed STEP AP214 file holding the eight corner points of a 10 mm cube. For testing STEP header and entity parsing and CAD-exchange tooling.
ISO-10303-21;
HEADER;
FILE_DESCRIPTION(('Novus Examples 10mm cube - corner points'),'2;1');
FILE_NAME('cube.step','2026-01-01T00:00:00',('Novus Examples'),(''),'Novus Examples','Novus Examples','');
FILE_SCHEMA(('AUTOMOTIVE_DESIGN { 1 0 10303 214 1 1 1 1 }'));
ENDSEC;
DATA;
#1=CARTESIAN_POINT('corner1',(0.0,0.0,0.0));
#2=CARTESIAN_POINT('corner2',(10.0,0.0,0.0));
#3=CARTESIAN_POINT('corner3',(10.0,10.0,0.0));
#4=CARTESIAN_POINT('corner4',(0.0,10.0,0.0));
#5=CARTESIAN_POINT('corner5',(0.0,0.0,10.0));
#6=CARTESIAN_POINT('corner6',(10.0,0.0,10.0));
#7=CARTESIAN_POINT('corner7',(10.0,10.0,10.0));
#8=CARTESIAN_POINT('corner8',(0.0,10.0,10.0));
ENDSEC;
END-ISO-10303-21;
Specifications
- Format
- STEP AP214 (ISO 10303-21)
- Entities
- 8 CARTESIAN_POINT (cube corners)
- Units
- mm
- Note
- minimal, well-formed
What is a .step file?
STEP (Standard for the Exchange of Product model data) is an ISO 10303 CAD format that stores precise boundary-representation solid geometry and product data as structured text. Unlike mesh formats, it preserves exact curves and surfaces for engineering use. It is the leading neutral format for mechanical CAD interchange.
How to use this file
Use an example STEP file to test CAD B-rep parsing, precise-geometry import, and interoperability tooling between mechanical design and CAM applications.
Related files
- dxfDXF — CAD Cube (line geometry)A 10 mm cube drawn as 12 DXF LINE entities — the AutoCAD interchange format, written with ezdxf. For testing DXF parsers and CAD conversion.
- epsEPS — Isometric Cube IllustrationAn isometric cube as Encapsulated PostScript — a 2D vector illustration with three shaded faces. For testing EPS/PostScript rendering and vector conversion.
- igesIGES — Minimal Line EntityA minimal, well-formed IGES 5.3 file with a single LINE entity and correct Start/Global/Directory/Parameter/Terminate sections. For testing IGES parsers and CAD conversion.
- 3mf3MF — Manufacturing CubeA 10 mm cube as 3MF — the modern OPC-packaged manufacturing format (a ZIP of model XML plus relationships). For testing 3MF readers and slicers.
- daeDAE — COLLADA CubeA 10 mm cube as COLLADA (.dae) — the XML digital-asset-exchange format used across 3D tools and game engines. For testing COLLADA parsers and conversion.
- glbGLB — glTF 2.0 Binary CubeA 10 mm cube as binary glTF (GLB) — the dominant modern format for 3D on the web and in AR, with per-face normals packed into one self-contained file. Powers the interactive 3D preview on this site; for testing glTF loaders and conversion.
Generated by generation/models.py. Free for any use, no attribution required — license.