From 4e154ba801b8e5196d83a91a73ddb6ddd700a992 Mon Sep 17 00:00:00 2001 From: VertexC Date: Thu, 19 Mar 2020 01:11:22 -0700 Subject: [PATCH] add uint64 and in64 to data type --- plyfile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plyfile.py b/plyfile.py index ec9c5b7..589b6ff 100644 --- a/plyfile.py +++ b/plyfile.py @@ -43,6 +43,8 @@ ('int', 'i4'), ('uint32', 'u4'), ('uint', 'u4'), + ('int64', 'i8'), + ('uint64', 'u8'), ('float32', 'f4'), ('float', 'f4'), ('float64', 'f8'),