Return the numpy dtype description for this property (as a tuple of strings).
(self, byte_order='=')
| 770 | return PlyProperty(line[2], line[1]) |
| 771 | |
| 772 | def dtype(self, byte_order='='): |
| 773 | ''' |
| 774 | Return the numpy dtype description for this property (as a tuple |
| 775 | of strings). |
| 776 | |
| 777 | ''' |
| 778 | return byte_order + self.val_dtype |
| 779 | |
| 780 | def _from_fields(self, fields): |
| 781 | ''' |
no outgoing calls
no test coverage detected