-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #254 from BrianPugh/master
Also allow "vertex_index" in ply files
- Loading branch information
Showing
4 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from .core_class import PyntCloud | ||
from .core_class import PyntCloud |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
ply | ||
format ascii 1.0 | ||
comment VCGLIB generated | ||
element vertex 6 | ||
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 8 | ||
property list uchar int vertex_index | ||
end_header | ||
0.5 0 0.5 0 -1 0 255 0 0 255 | ||
0 0.5 0.5 -1 0 0 255 0 0 255 | ||
0.5 0.5 0 0 0 -1 0 255 0 255 | ||
1 0.5 0.5 1 0 0 255 0 0 255 | ||
0.5 1 0.5 0 1 0 255 0 0 255 | ||
0.5 0.5 1 0 0 1 0 0 255 255 | ||
3 0 1 2 | ||
3 0 3 2 | ||
3 3 4 2 | ||
3 4 1 2 | ||
3 0 1 5 | ||
3 0 3 5 | ||
3 3 4 5 | ||
3 4 1 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters