cesium-native 0.46.0
Loading...
Searching...
No Matches
PropertyType.h
1#pragma once
2
3#include <glm/common.hpp>
4
5#include <cstdint>
6#include <string>
7
8namespace CesiumGltf {
12enum class PropertyType {
16 Invalid,
20 Scalar,
24 Vec2,
28 Vec3,
32 Vec4,
36 Mat2,
40 Mat3,
44 Mat4,
48 String,
52 Boolean,
56 Enum
57};
58
66 None,
70 Int8,
74 Uint8,
78 Int16,
82 Uint16,
86 Int32,
90 Uint32,
94 Int64,
98 Uint64,
102 Float32,
106 Float64,
107};
108
118
129
138std::string
140
152
164
176
189
200 PropertyComponentType componentType);
201
211
221
232
243
254
265
266} // namespace CesiumGltf
Classes for working with glTF models.
PropertyComponentType
The possible types of a property component.
@ Float32
A property component equivalent to a float.
@ Uint32
A property component equivalent to a uint32_t.
@ Uint16
A property component equivalent to a uint16_t.
@ Int16
A property component equivalent to an int16_t.
@ Uint8
A property component equivalent to a uint8_t.
@ Int8
A property component equivalent to an int8_t.
@ Int32
A property component equivalent to an int32_t.
@ Uint64
A property component equivalent to a uint32_t.
@ Float64
A property component equivalent to a double.
@ Int64
A property component equivalent to an int64_t.
size_t getSizeOfComponentType(PropertyComponentType componentType)
Obtains the size in bytes of a value of this PropertyComponentType.
PropertyComponentType convertArrayOffsetTypeStringToPropertyComponentType(const std::string &str)
Converts a string listed in PropertyTableProperty::ArrayOffsetType to its corresponding PropertyCompo...
bool isPropertyTypeVecN(PropertyType type)
Checks if the given PropertyType represents a vector with any number of components.
bool isPropertyComponentTypeInteger(PropertyComponentType componentType)
Checks if the given PropertyComponentType represents an integer value.
PropertyComponentType convertStringToPropertyComponentType(const std::string &str)
Converts a string into a PropertyComponentType.
bool isPropertyTypeMatN(PropertyType type)
Checks if the given PropertyType represents a matrix with any number of components.
std::string convertPropertyTypeToString(PropertyType type)
Converts a PropertyType value to a string.
std::string convertPropertyComponentTypeToString(PropertyComponentType componentType)
Converts a PropertyComponentType value to a string.
PropertyType convertStringToPropertyType(const std::string &str)
Converts a string into a PropertyType.
int32_t convertPropertyComponentTypeToAccessorComponentType(PropertyComponentType componentType)
Converts a PropertyComponentType to an integer type ID listed in AccessorSpec::ComponentType.
PropertyType
The possible types of a property in a PropertyTableView.
@ Vec3
A vector with three components.
@ Invalid
An invalid property type.
@ Scalar
A scalar property, i.e. an integer or floating point value.
@ Vec4
A vector with four components.
@ Vec2
A vector with two components.
PropertyComponentType convertAccessorComponentTypeToPropertyComponentType(int componentType)
Converts a integer type ID listed in AccessorSpec::ComponentType to its corresponding PropertyCompone...
glm::length_t getDimensionsFromPropertyType(PropertyType type)
Obtains the number of dimensions in the given PropertyType.
glm::length_t getComponentCountFromPropertyType(PropertyType type)
Obtains the number of components in the given PropertyType.
PropertyComponentType convertStringOffsetTypeStringToPropertyComponentType(const std::string &str)
Converts a string listed in PropertyTableProperty::StringOffsetType to its corresponding PropertyComp...
This class is not meant to be instantiated directly. Use Enum instead.
Definition Enum.h:12