-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
42 changed files
with
569 additions
and
2,126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// This file was generated by generate-classes. | ||
// DO NOT EDIT THIS FILE! | ||
#pragma once | ||
|
||
#include "CesiumGltf/Library.h" | ||
|
||
#include <CesiumUtility/ExtensibleObject.h> | ||
|
||
namespace CesiumGltf { | ||
/** | ||
* @brief Parameters describing a capsule shape. | ||
*/ | ||
struct CESIUMGLTF_API Capsule final : public CesiumUtility::ExtensibleObject { | ||
static inline constexpr const char* TypeName = "Capsule"; | ||
|
||
/** | ||
* @brief The distance between the centers of the two capping spheres of | ||
* capsule. | ||
*/ | ||
double height = 0.5; | ||
|
||
/** | ||
* @brief The radius of the sphere located at the bottom of the capsule (i.e. | ||
* the sphere at the half-height along -Y) | ||
*/ | ||
double radiusBottom = 0.25; | ||
|
||
/** | ||
* @brief The radius of the sphere located at the top of the capsule (i.e. the | ||
* sphere at the half-height along +Y) | ||
*/ | ||
double radiusTop = 0.25; | ||
}; | ||
} // namespace CesiumGltf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
CesiumGltf/generated/include/CesiumGltf/ExtensionKhrImplicitShapes.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// This file was generated by generate-classes. | ||
// DO NOT EDIT THIS FILE! | ||
#pragma once | ||
|
||
#include "CesiumGltf/Library.h" | ||
#include "CesiumGltf/Shape.h" | ||
|
||
#include <CesiumUtility/ExtensibleObject.h> | ||
|
||
#include <vector> | ||
|
||
namespace CesiumGltf { | ||
/** | ||
* @brief Top level collision primitives. | ||
*/ | ||
struct CESIUMGLTF_API ExtensionKhrImplicitShapes final | ||
: public CesiumUtility::ExtensibleObject { | ||
static inline constexpr const char* TypeName = "ExtensionKhrImplicitShapes"; | ||
static inline constexpr const char* ExtensionName = "KHR_implicit_shapes"; | ||
|
||
/** | ||
* @brief An array of shape descriptions. | ||
*/ | ||
std::vector<CesiumGltf::Shape> shapes; | ||
}; | ||
} // namespace CesiumGltf |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.