cesium-native 0.46.0
Loading...
Searching...
No Matches
PropertyTextureView.h
1#pragma once
2
3#include <CesiumGltf/Class.h>
4#include <CesiumGltf/ClassProperty.h>
5#include <CesiumGltf/ExtensionModelExtStructuralMetadata.h>
6#include <CesiumGltf/Model.h>
7#include <CesiumGltf/PropertyTexture.h>
8#include <CesiumGltf/PropertyTexturePropertyView.h>
9#include <CesiumGltf/PropertyTypeTraits.h>
10#include <CesiumGltf/TextureView.h>
11
12namespace CesiumGltf {
42
52public:
61 const Model& model,
62 const PropertyTexture& propertyTexture) noexcept;
63
70 PropertyTextureViewStatus status() const noexcept { return this->_status; }
71
76 const std::optional<std::string>& name() const noexcept {
77 return _pPropertyTexture->name;
78 }
79
86 const Class* getClass() const noexcept { return _pClass; }
87
96 const ClassProperty* getClassProperty(const std::string& propertyId) const;
97
122 template <typename T, bool Normalized = false>
124 const std::string& propertyId,
125 const TextureViewOptions& propertyOptions = TextureViewOptions()) const {
126 if (this->_status != PropertyTextureViewStatus::Valid) {
129 }
130
131 const ClassProperty* pClassProperty = getClassProperty(propertyId);
132 if (!pClassProperty) {
135 }
136
137 return getPropertyViewImpl<T, Normalized>(
138 propertyId,
139 *pClassProperty,
140 propertyOptions);
141 }
142
164 template <typename Callback>
166 const std::string& propertyId,
167 Callback&& callback,
168 const TextureViewOptions& propertyOptions = TextureViewOptions()) const {
169 if (this->_status != PropertyTextureViewStatus::Valid) {
170 callback(
171 propertyId,
174 return;
175 }
176
177 const ClassProperty* pClassProperty = getClassProperty(propertyId);
178 if (!pClassProperty) {
179 callback(
180 propertyId,
183 return;
184 }
185
186 PropertyType type = convertStringToPropertyType(pClassProperty->type);
188 if (pClassProperty->componentType) {
189 componentType =
191 }
192
193 bool normalized = pClassProperty->normalized;
194 if (normalized && !isPropertyComponentTypeInteger(componentType)) {
195 // Only integer components may be normalized.
196 callback(
197 propertyId,
200 return;
201 }
202
203 if (pClassProperty->array) {
204 if (normalized) {
205 getArrayPropertyViewImpl<Callback, true>(
206 propertyId,
207 *pClassProperty,
208 type,
209 componentType,
210 std::forward<Callback>(callback),
211 propertyOptions);
212 } else {
213 getArrayPropertyViewImpl<Callback, false>(
214 propertyId,
215 *pClassProperty,
216 type,
217 componentType,
218 std::forward<Callback>(callback),
219 propertyOptions);
220 }
221 return;
222 }
223
224 if (type == PropertyType::Scalar) {
225 if (normalized) {
226 getScalarPropertyViewImpl<Callback, true>(
227 propertyId,
228 *pClassProperty,
229 componentType,
230 std::forward<Callback>(callback),
231 propertyOptions);
232 } else {
233 getScalarPropertyViewImpl<Callback, false>(
234 propertyId,
235 *pClassProperty,
236 componentType,
237 std::forward<Callback>(callback),
238 propertyOptions);
239 }
240 return;
241 }
242
243 if (isPropertyTypeVecN(type)) {
244 if (normalized) {
245 getVecNPropertyViewImpl<Callback, true>(
246 propertyId,
247 *pClassProperty,
248 type,
249 componentType,
250 std::forward<Callback>(callback),
251 propertyOptions);
252 } else {
253 getVecNPropertyViewImpl<Callback, false>(
254 propertyId,
255 *pClassProperty,
256 type,
257 componentType,
258 std::forward<Callback>(callback),
259 propertyOptions);
260 }
261 return;
262 }
263
264 callback(
265 propertyId,
268 return;
269 }
270
293 template <typename Callback>
295 Callback&& callback,
296 const TextureViewOptions& propertyOptions = TextureViewOptions()) const {
297 for (const auto& property : this->_pClass->properties) {
299 property.first,
300 std::forward<Callback>(callback),
301 propertyOptions);
302 }
303 }
304
305private:
306 template <typename T, bool Normalized>
308 const std::string& propertyId,
309 const ClassProperty& classProperty,
310 const TextureViewOptions& propertyOptions) const {
311 auto propertyTexturePropertyIter =
312 _pPropertyTexture->properties.find(propertyId);
313 if (propertyTexturePropertyIter == _pPropertyTexture->properties.end()) {
314 if (!classProperty.required && classProperty.defaultProperty) {
315 // If the property was omitted from the property texture, it is still
316 // technically valid if it specifies a default value. Create a view that
317 // just returns the default value.
318 return PropertyTexturePropertyView<T, Normalized>(classProperty);
319 }
320
321 return PropertyTexturePropertyView<T, Normalized>(
323 }
324
325 const PropertyTextureProperty& propertyTextureProperty =
326 propertyTexturePropertyIter->second;
327
328 if constexpr (IsMetadataScalar<T>::value) {
329 return createScalarPropertyView<T, Normalized>(
330 classProperty,
331 propertyTextureProperty,
332 propertyOptions);
333 }
334
335 if constexpr (IsMetadataVecN<T>::value) {
336 return createVecNPropertyView<T, Normalized>(
337 classProperty,
338 propertyTextureProperty,
339 propertyOptions);
340 }
341
342 if constexpr (IsMetadataArray<T>::value) {
343 return createArrayPropertyView<
345 Normalized>(classProperty, propertyTextureProperty, propertyOptions);
346 }
347 }
348
349 template <typename Callback, bool Normalized>
350 void getArrayPropertyViewImpl(
351 const std::string& propertyId,
352 const ClassProperty& classProperty,
353 PropertyType type,
354 PropertyComponentType componentType,
355 Callback&& callback,
356 const TextureViewOptions& propertyOptions) const {
357 // Only scalar arrays are supported.
358 if (type != PropertyType::Scalar) {
359 callback(
360 propertyId,
361 PropertyTexturePropertyView<uint8_t>(
363 return;
364 }
365
366 int64_t count = classProperty.count.value_or(0);
367 if (count <= 0 || count > 4) {
368 callback(
369 propertyId,
370 PropertyTexturePropertyView<uint8_t>(
372 return;
373 }
374
375 switch (componentType) {
377 callback(
378 propertyId,
379 getPropertyViewImpl<PropertyArrayView<int8_t>, Normalized>(
380 propertyId,
381 classProperty,
382 propertyOptions));
383 break;
385 callback(
386 propertyId,
387 getPropertyViewImpl<PropertyArrayView<uint8_t>, Normalized>(
388 propertyId,
389 classProperty,
390 propertyOptions));
391 break;
393 callback(
394 propertyId,
395 getPropertyViewImpl<PropertyArrayView<int16_t>, Normalized>(
396 propertyId,
397 classProperty,
398 propertyOptions));
399 break;
401 callback(
402 propertyId,
403 getPropertyViewImpl<PropertyArrayView<uint16_t>, Normalized>(
404 propertyId,
405 classProperty,
406 propertyOptions));
407 break;
408 default:
409 callback(
410 propertyId,
411 PropertyTexturePropertyView<uint8_t>(
413 break;
414 }
415 }
416
417 template <typename Callback, bool Normalized>
418 void getScalarPropertyViewImpl(
419 const std::string& propertyId,
420 const ClassProperty& classProperty,
421 PropertyComponentType componentType,
422 Callback&& callback,
423 const TextureViewOptions& propertyOptions) const {
424 switch (componentType) {
426 callback(
427 propertyId,
428 getPropertyViewImpl<int8_t, Normalized>(
429 propertyId,
430 classProperty,
431 propertyOptions));
432 return;
434 callback(
435 propertyId,
436 getPropertyViewImpl<uint8_t, Normalized>(
437 propertyId,
438 classProperty,
439 propertyOptions));
440 return;
442 callback(
443 propertyId,
444 getPropertyViewImpl<int16_t, Normalized>(
445 propertyId,
446 classProperty,
447 propertyOptions));
448 return;
450 callback(
451 propertyId,
452 getPropertyViewImpl<uint16_t, Normalized>(
453 propertyId,
454 classProperty,
455 propertyOptions));
456 break;
458 callback(
459 propertyId,
460 getPropertyViewImpl<int32_t, Normalized>(
461 propertyId,
462 classProperty,
463 propertyOptions));
464 break;
466 callback(
467 propertyId,
468 getPropertyViewImpl<uint32_t, Normalized>(
469 propertyId,
470 classProperty,
471 propertyOptions));
472 break;
474 callback(
475 propertyId,
476 getPropertyViewImpl<float, false>(
477 propertyId,
478 classProperty,
479 propertyOptions));
480 break;
481 default:
482 callback(
483 propertyId,
484 PropertyTexturePropertyView<uint8_t>(
486 break;
487 }
488 }
489
490 template <typename Callback, glm::length_t N, bool Normalized>
491 void getVecNPropertyViewImpl(
492 const std::string& propertyId,
493 const ClassProperty& classProperty,
494 PropertyComponentType componentType,
495 Callback&& callback,
496 const TextureViewOptions& propertyOptions) const {
497 switch (componentType) {
499 callback(
500 propertyId,
501 getPropertyViewImpl<glm::vec<N, int8_t>, Normalized>(
502 propertyId,
503 classProperty,
504 propertyOptions));
505 break;
507 callback(
508 propertyId,
509 getPropertyViewImpl<glm::vec<N, uint8_t>, Normalized>(
510 propertyId,
511 classProperty,
512 propertyOptions));
513 break;
515 if constexpr (N == 2) {
516 callback(
517 propertyId,
518 getPropertyViewImpl<glm::vec<N, int16_t>, Normalized>(
519 propertyId,
520 classProperty,
521 propertyOptions));
522 break;
523 }
524 [[fallthrough]];
526 if constexpr (N == 2) {
527 callback(
528 propertyId,
529 getPropertyViewImpl<glm::vec<N, uint16_t>, Normalized>(
530 propertyId,
531 classProperty,
532 propertyOptions));
533 break;
534 }
535 [[fallthrough]];
536 default:
537 callback(
538 propertyId,
539 PropertyTexturePropertyView<uint8_t>(
541 break;
542 }
543 }
544
545 template <typename Callback, bool Normalized>
546 void getVecNPropertyViewImpl(
547 const std::string& propertyId,
548 const ClassProperty& classProperty,
549 PropertyType type,
550 PropertyComponentType componentType,
551 Callback&& callback,
552 const TextureViewOptions& propertyOptions) const {
553 const glm::length_t N = getDimensionsFromPropertyType(type);
554 switch (N) {
555 case 2:
556 getVecNPropertyViewImpl<Callback, 2, Normalized>(
557 propertyId,
558 classProperty,
559 componentType,
560 std::forward<Callback>(callback),
561 propertyOptions);
562 break;
563 case 3:
564 getVecNPropertyViewImpl<Callback, 3, Normalized>(
565 propertyId,
566 classProperty,
567 componentType,
568 std::forward<Callback>(callback),
569 propertyOptions);
570 break;
571 case 4:
572 getVecNPropertyViewImpl<Callback, 4, Normalized>(
573 propertyId,
574 classProperty,
575 componentType,
576 std::forward<Callback>(callback),
577 propertyOptions);
578 break;
579 default:
580 callback(
581 propertyId,
582 PropertyTexturePropertyView<uint8_t>(
584 break;
585 }
586 }
587
588 template <typename T, bool Normalized>
589 PropertyTexturePropertyView<T, Normalized> createScalarPropertyView(
590 const ClassProperty& classProperty,
591 [[maybe_unused]] const PropertyTextureProperty& propertyTextureProperty,
592 const TextureViewOptions& propertyOptions) const {
593 if (classProperty.array) {
594 return PropertyTexturePropertyView<T, Normalized>(
596 }
597
598 const PropertyType type = convertStringToPropertyType(classProperty.type);
599 if (!canRepresentPropertyType<T>(type)) {
600 return PropertyTexturePropertyView<T, Normalized>(
602 }
603
605 classProperty.componentType.value_or(""));
606 const CesiumGltf::Enum* pEnumDefinition = nullptr;
607
608 if (type == PropertyType::Enum && classProperty.enumType) {
609 const auto& enumDefinitionIt =
610 this->_pEnumDefinitions->find(*classProperty.enumType);
611 if (enumDefinitionIt == this->_pEnumDefinitions->end()) {
612 return PropertyTexturePropertyView<T, Normalized>(
614 }
615
617 enumDefinitionIt->second.valueType);
618 pEnumDefinition = &enumDefinitionIt->second;
619
620 if (componentType == PropertyComponentType::Float32 ||
621 componentType == PropertyComponentType::Float64) {
622 return PropertyTexturePropertyView<T, Normalized>(
624 }
625 } else if (type == PropertyType::Enum) {
626 return PropertyTexturePropertyView<T, Normalized>(
628 }
629
630 if (TypeToPropertyType<T>::component != componentType) {
631 return PropertyTexturePropertyView<T, Normalized>(
633 }
634
635 if (classProperty.normalized != Normalized) {
636 return PropertyTexturePropertyView<T, Normalized>(
638 }
639
640 // Only up to four bytes of image data are supported.
641 if constexpr (sizeof(T) <= 4) {
642 return createPropertyViewImpl<T, Normalized>(
643 classProperty,
644 propertyTextureProperty,
645 sizeof(T),
646 propertyOptions,
647 pEnumDefinition);
648 } else {
649 return PropertyTexturePropertyView<T, Normalized>(
651 }
652 }
653
654 template <typename T, bool Normalized>
655 PropertyTexturePropertyView<T, Normalized> createVecNPropertyView(
656 const ClassProperty& classProperty,
657 [[maybe_unused]] const PropertyTextureProperty& propertyTextureProperty,
658 [[maybe_unused]] const TextureViewOptions& propertyOptions) const {
659 if (classProperty.array) {
660 return PropertyTexturePropertyView<T, Normalized>(
662 }
663
664 const PropertyType type = convertStringToPropertyType(classProperty.type);
665 if (!canRepresentPropertyType<T>(type)) {
666 return PropertyTexturePropertyView<T, Normalized>(
668 }
669
670 const PropertyComponentType componentType =
672 classProperty.componentType.value_or(""));
673 if (TypeToPropertyType<T>::component != componentType) {
674 return PropertyTexturePropertyView<T, Normalized>(
676 }
677
678 if (classProperty.normalized != Normalized) {
679 return PropertyTexturePropertyView<T, Normalized>(
681 }
682
683 // Only up to four bytes of image data are supported.
684 if constexpr (sizeof(T) <= 4) {
685 return createPropertyViewImpl<T, Normalized>(
686 classProperty,
687 propertyTextureProperty,
688 sizeof(T),
689 propertyOptions,
690 nullptr);
691 } else {
692 return PropertyTexturePropertyView<T, Normalized>(
694 }
695 }
696
697 template <typename T, bool Normalized>
698 PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>
699 createArrayPropertyView(
700 const ClassProperty& classProperty,
701 [[maybe_unused]] const PropertyTextureProperty& propertyTextureProperty,
702 [[maybe_unused]] const TextureViewOptions& propertyOptions) const {
703 if (!classProperty.array) {
704 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
706 }
707
708 const PropertyType type = convertStringToPropertyType(classProperty.type);
709 if (!canRepresentPropertyType<T>(type)) {
710 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
712 }
713
715 classProperty.componentType.value_or(""));
716 const CesiumGltf::Enum* pEnumDefinition = nullptr;
717
718 if (type == PropertyType::Enum && classProperty.enumType) {
719 const auto& enumDefinitionIt =
720 this->_pEnumDefinitions->find(*classProperty.enumType);
721 if (enumDefinitionIt == this->_pEnumDefinitions->end()) {
722 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
724 }
725
727 enumDefinitionIt->second.valueType);
728 pEnumDefinition = &enumDefinitionIt->second;
729
730 if (componentType == PropertyComponentType::Float32 ||
731 componentType == PropertyComponentType::Float64) {
732 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
734 }
735 } else if (type == PropertyType::Enum) {
736 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
738 }
739
740 if (TypeToPropertyType<T>::component != componentType) {
741 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
743 }
744
745 if (classProperty.normalized != Normalized) {
746 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
748 }
749
750 // Only scalar arrays are supported. The scalar component type must not
751 // exceed two bytes.
752 if constexpr (IsMetadataScalar<T>::value && sizeof(T) <= 4) {
753 // Only up to four elements are supported.
754 size_t count = static_cast<size_t>(classProperty.count.value_or(0));
755 if (count <= 0 || count > 4) {
756 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
758 }
759
760 if (count * sizeof(T) > 4) {
761 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
763 }
764
765 return createPropertyViewImpl<PropertyArrayView<T>, Normalized>(
766 classProperty,
767 propertyTextureProperty,
768 count * sizeof(T),
769 propertyOptions,
770 pEnumDefinition);
771 } else {
772 return PropertyTexturePropertyView<PropertyArrayView<T>, Normalized>(
774 }
775 }
776
777 template <typename T, bool Normalized>
778 PropertyTexturePropertyView<T, Normalized> createPropertyViewImpl(
779 const ClassProperty& classProperty,
780 const PropertyTextureProperty& propertyTextureProperty,
781 size_t elementSize,
782 const TextureViewOptions& propertyOptions,
783 const CesiumGltf::Enum* pEnumDefinition) const {
784 int32_t samplerIndex;
785 int32_t imageIndex;
786
787 auto status =
788 getTextureSafe(propertyTextureProperty.index, samplerIndex, imageIndex);
789
791 return PropertyTexturePropertyView<T, Normalized>(status);
792 }
793
794 status = checkSampler(samplerIndex);
796 return PropertyTexturePropertyView<T, Normalized>(status);
797 }
798
799 status = checkImage(imageIndex);
801 return PropertyTexturePropertyView<T, Normalized>(status);
802 }
803
805 _pModel->images[static_cast<size_t>(imageIndex)].pAsset;
806 const std::vector<int64_t>& channels = propertyTextureProperty.channels;
807
808 status = checkChannels(channels, *pImage);
810 return PropertyTexturePropertyView<T, Normalized>(status);
811 }
812
813 if (channels.size() * static_cast<size_t>(pImage->bytesPerChannel) !=
814 elementSize) {
816 }
817
818 if constexpr (!Normalized) {
819 if (pEnumDefinition != nullptr) {
820 return PropertyTexturePropertyView<T, Normalized>(
821 propertyTextureProperty,
822 classProperty,
823 pEnumDefinition,
824 _pModel->samplers[static_cast<size_t>(samplerIndex)],
825 *pImage,
826 propertyOptions);
827 }
828 }
829
830 return PropertyTexturePropertyView<T, Normalized>(
831 propertyTextureProperty,
832 classProperty,
833 _pModel->samplers[static_cast<size_t>(samplerIndex)],
834 *pImage,
835 propertyOptions);
836 }
837
838 PropertyViewStatusType getTextureSafe(
839 const int32_t textureIndex,
840 int32_t& samplerIndex,
841 int32_t& imageIndex) const noexcept;
842
844 checkSampler(const int32_t samplerIndex) const noexcept;
845
846 PropertyViewStatusType checkImage(const int32_t imageIndex) const noexcept;
847
848 PropertyViewStatusType checkChannels(
849 const std::vector<int64_t>& channels,
850 const ImageAsset& image) const noexcept;
851
852 const Model* _pModel;
853 const PropertyTexture* _pPropertyTexture;
854 const Class* _pClass;
855 const std::unordered_map<std::string, CesiumGltf::Enum>* _pEnumDefinitions;
856
858};
859} // namespace CesiumGltf
static const int ErrorUnsupportedProperty
This property view is associated with a ClassProperty of an unsupported type.
static const int ErrorChannelsAndTypeMismatch
The channels of this property texture property do not provide the exact number of bytes required by t...
static const int ErrorInvalidPropertyTexture
This property view was initialized from an invalid PropertyTexture.
A view of the data specified by a PropertyTextureProperty.
A view on a PropertyTexture.
PropertyTextureView(const Model &model, const PropertyTexture &propertyTexture) noexcept
Construct a PropertyTextureView.
PropertyTexturePropertyView< T, Normalized > getPropertyView(const std::string &propertyId, const TextureViewOptions &propertyOptions=TextureViewOptions()) const
Gets a PropertyTexturePropertyView that views the data of a property stored in the PropertyTexture.
PropertyTextureViewStatus status() const noexcept
Gets the status of this property texture view.
void forEachProperty(Callback &&callback, const TextureViewOptions &propertyOptions=TextureViewOptions()) const
Iterates over each property in the PropertyTexture with a callback that accepts a property id and a P...
void getPropertyView(const std::string &propertyId, Callback &&callback, const TextureViewOptions &propertyOptions=TextureViewOptions()) const
Gets a PropertyTexturePropertyView through a callback that accepts a property id and a PropertyTextur...
const ClassProperty * getClassProperty(const std::string &propertyId) const
Finds the ClassProperty that describes the type information of the property with the specified id.
const std::optional< std::string > & name() const noexcept
Gets the name of the property texture being viewed. Returns std::nullopt if no name was specified.
const Class * getClass() const noexcept
Gets the Class that this property texture conforms to.
static const PropertyViewStatusType ErrorTypeMismatch
This property view's type does not match what is specified in ClassProperty::type.
static const PropertyViewStatusType Valid
This property view is valid and ready to use.
static const PropertyViewStatusType ErrorNonexistentProperty
This property view is trying to view a property that does not exist.
static const PropertyViewStatusType ErrorInvalidNormalization
This property says it is normalized, but it does not have an integer component type.
static const PropertyViewStatusType ErrorArrayTypeMismatch
This property view differs from what is specified in ClassProperty::array.
static const PropertyViewStatusType ErrorNormalizationMismatch
This property view's normalization differs from what is specified in ClassProperty::normalized.
static const PropertyViewStatusType ErrorInvalidEnum
The property provided an invalid enum value.
static const PropertyViewStatusType ErrorComponentTypeMismatch
This property view's component type does not match what is specified in ClassProperty::componentType.
A smart pointer that calls addReference and releaseReference on the controlled object.
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.
@ Float64
A property component equivalent to a double.
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.
@ ErrorClassNotFound
The property attribute's specified class could not be found in the extension.
@ ErrorMissingMetadataExtension
The glTF is missing the EXT_structural_metadata extension.
@ ErrorMissingSchema
The glTF EXT_structural_metadata extension doesn't contain a schema.
bool canRepresentPropertyType(PropertyType type)
Returns whether the type T can represent the given PropertyType.
@ Valid
This accessor is valid and ready to use.
PropertyType convertStringToPropertyType(const std::string &str)
Converts a string into a PropertyType.
PropertyType
The possible types of a property in a PropertyTableView.
@ Scalar
A scalar property, i.e. an integer or floating point value.
glm::length_t getDimensionsFromPropertyType(PropertyType type)
Obtains the number of dimensions in the given PropertyType.
int32_t PropertyViewStatusType
The type used for fields of PropertyViewStatus.
PropertyTextureViewStatus
Indicates the status of a property texture view.
@ Valid
This property texture view is valid and ready to use.
bool normalized
Specifies whether integer values are normalized. Only applicable to SCALAR, VECN, and MATN types with...
std::optional< std::string > componentType
The datatype of the element's components. Only applicable to SCALAR, VECN, and MATN types.
bool array
Whether the property is an array. When count is defined the property is a fixed-length array....
std::string type
The element type.
bool required
If required, the property must be present in every entity conforming to the class....
std::optional< CesiumUtility::JsonValue > defaultProperty
A default value to use when encountering a noData value or an omitted property. The value is given in...
A class containing a set of properties.
Definition Class.h:17
std::unordered_map< std::string, CesiumGltf::ClassProperty > properties
A dictionary, where each key is a property ID and each value is an object defining the property....
Definition Class.h:38
This class is not meant to be instantiated directly. Use Enum instead.
Definition Enum.h:12
void type
The component type of this metadata array.
std::vector< CesiumGltf::Sampler > samplers
An array of samplers.
Definition ModelSpec.h:116
std::vector< CesiumGltf::Image > images
An array of images.
Definition ModelSpec.h:90
This class is not meant to be instantiated directly. Use Model instead.
Definition Model.h:14
Properties conforming to a class, organized as property values stored in textures.
std::optional< std::string > name
The name of the property texture, e.g. for display purposes.
std::unordered_map< std::string, CesiumGltf::PropertyTextureProperty > properties
A dictionary, where each key corresponds to a property ID in the class' properties dictionary and eac...
Describes options for constructing a view on a glTF texture.
Definition TextureView.h:18