Compare commits

..

No commits in common. "c9f33ae930da8c3c6fbb38a6ed10d4e94fbce67d" and "27cad0eb4674b6df354796ca867f9bf756508c85" have entirely different histories.

2 changed files with 35 additions and 38 deletions

@ -1,8 +1,6 @@
#ifndef PLY_H
#define PLY_H
#include <stddef.h>
typedef enum {
PLY_FORMAT_INVALID = -1,
PLY_FORMAT_ASCII,
@ -48,42 +46,6 @@ typedef struct PlyElementStruct {
struct PlyElementStruct* next;
} PlyElement;
const char* const ply_formats[] = {
"ascii",
"binary_little_endian",
"binary_big_endian"
};
const char* const ply_header_items[] = {
"comment",
"end_header",
"element",
"property",
};
const char* const ply_type_strings[] = {
"char",
"uchar",
"short",
"ushort",
"int",
"uint",
"float",
"double",
};
size_t ply_type_sizes[] = {
1,
1,
2,
2,
4,
4,
4,
8,
};
PlyElement* ply_load_mesh(char* filename);
void ply_free_mesh(PlyElement* elements_head);

@ -3,6 +3,41 @@
#include <string.h>
#include <stdio.h>
char* ply_formats[] = {
"ascii",
"binary_little_endian",
"binary_big_endian"
};
char* ply_header_items[] = {
"comment",
"end_header",
"element",
"property",
};
char* ply_type_strings[] = {
"char",
"uchar",
"short",
"ushort",
"int",
"uint",
"float",
"double",
};
size_t ply_type_sizes[] = {
1,
1,
2,
2,
4,
4,
4,
8,
};
PlyPropertyType ply_parse_type(const char* type_string) {
for(uint32_t i = 0; i < sizeof(ply_type_strings)/sizeof(char*); i++) {
if(strcmp(ply_type_strings[i], type_string) == 0) {