DirectX to PLY Converter
Drop a .x file below and get a .ply back. The conversion happens inside this page using WebAssembly, so nothing is uploaded to a server and there is no queue to wait in.
- Private by designFiles stay on your device.
- No queueConversion starts instantly.
- No sign upNo account, no limits per day.
Compatibility
What survives the trip from DirectX to PLY.
| Feature | DirectX | PLY | Result |
|---|---|---|---|
| Geometry | Supported | Supported | Supported |
| Vertex colors | Supported | Supported | Supported |
| Materials | Supported | Not supported | Not supported |
| Textures | Partial | Not supported | Not supported |
| Scene hierarchy | Supported | Not supported | Not supported |
| Animation | Partial | Not supported | Not supported |
How to convert DirectX to PLY
- 1Add your DirectX fileDrop the .x file into the box, or pick it from disk. Multiple files are converted one after another.
- 2Pick PLY as the outputPLY is already selected on this page. Adjust scale, up axis or triangle budget if the target application is picky.
- 3Download the resultThe .ply file is written locally and appears as a download button next to your file.
About DirectX
The .x format shipped with the DirectX SDK and stores meshes, materials, bone hierarchies and animation sets. Plenty of older Windows games and modding communities still distribute assets in it.
- DirectX SDK tools
- Blender via add-on
- Assimp
About PLY
PLY was designed for range scanner output, so it stores arbitrary per vertex properties such as colour, confidence and intensity. Both an ASCII and a compact binary variant exist and both are widely supported.
- MeshLab
- CloudCompare
- Blender
- RealityCapture
Questions
Is this DirectX to PLY converter free?
Yes. There is no account, no daily quota and no watermark. The tool is a static web page and the work is done by your own CPU, so there are no server costs to pass on.
Are my files uploaded anywhere?
No. MeshFormat loads a WebAssembly build of the geometry kernels into your browser and reads the file locally. You can open the network tab and confirm that nothing leaves the page, or disconnect after the page has loaded and keep converting.
How large can a DirectX file be?
The practical limit is your available memory rather than an arbitrary cap. Models up to a few hundred megabytes work on a normal laptop; very dense scans convert faster if you lower the triangle budget in the options.
What is lost when converting DirectX to PLY?
Materials: material definitions are dropped, so the model arrives with a single neutral surface. Textures: texture images are dropped, so uv mapped detail will not travel with the file. Animation: animation tracks are dropped, because the output format stores static geometry only. Scene hierarchy: the scene tree is flattened, so parts arrive as a single level list rather than nested groups.
Which programs open PLY files?
MeshLab, CloudCompare, Blender, RealityCapture and most other tools that work with 3D meshes read .ply directly.