keijiro / Pcx

Point cloud importer & renderer for Unity
The Unlicense
1.36k stars 197 forks source link

Cannot import my ply file #17

Closed ecr23xx closed 5 years ago

ecr23xx commented 5 years ago

Here's my ply file header

ply
format ascii 1.0
comment VCGLIB generated
element vertex 5841
property float x
property float y
property float z
property float nx
property float ny
property float nz
property uchar red
property uchar green
property uchar blue
property uchar alpha
element face 11678
property list uchar int vertex_indices
end_header
keijiro commented 5 years ago

As written in README, Pcx only supports PLY binary little-endian format at the moment. According to the file header, your ply file is exported in ASCII format. You have to convert it to the LE binary format or re-export it in the LE binary format.

ecr23xx commented 5 years ago

OK, thank you