All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
sphereSchema.h
Go to the documentation of this file.
1//
2// Copyright 2023 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
8
9/* ************************************************************************** */
10/* ** ** */
11/* ** This file is generated by a script. ** */
12/* ** ** */
13/* ** Do not edit it directly (unless it is within a CUSTOM CODE section)! ** */
14/* ** Edit hdSchemaDefs.py instead to make changes. ** */
15/* ** ** */
16/* ************************************************************************** */
17
18#ifndef PXR_IMAGING_HD_SPHERE_SCHEMA_H
19#define PXR_IMAGING_HD_SPHERE_SCHEMA_H
20
22
23#include "pxr/imaging/hd/api.h"
24
25#include "pxr/imaging/hd/schema.h"
26
27// --(BEGIN CUSTOM CODE: Includes)--
28// --(END CUSTOM CODE: Includes)--
29
30PXR_NAMESPACE_OPEN_SCOPE
31
32// --(BEGIN CUSTOM CODE: Declares)--
33// --(END CUSTOM CODE: Declares)--
34
35#define HD_SPHERE_SCHEMA_TOKENS \
36 (sphere) \
37 (radius) \
38
39TF_DECLARE_PUBLIC_TOKENS(HdSphereSchemaTokens, HD_API,
40 HD_SPHERE_SCHEMA_TOKENS);
41
42//-----------------------------------------------------------------------------
43
44
45class HdSphereSchema : public HdSchema
46{
47public:
50
51 HdSphereSchema(HdContainerDataSourceHandle container)
52 : HdSchema(container) {}
53
59 HD_API
60 static HdSphereSchema GetFromParent(
61 const HdContainerDataSourceHandle &fromParentContainer);
62
64
65// --(BEGIN CUSTOM CODE: Schema Methods)--
66// --(END CUSTOM CODE: Schema Methods)--
67
70
71 HD_API
72 HdDoubleDataSourceHandle GetRadius() const;
73
75
78
81 HD_API
82 static const TfToken &GetSchemaToken();
83
86 HD_API
87 static const HdDataSourceLocator &GetDefaultLocator();
88
90
93
101 HD_API
102 static HdContainerDataSourceHandle
103 BuildRetained(
104 const HdDoubleDataSourceHandle &radius
105 );
106
114 {
115 public:
116 HD_API
117 Builder &SetRadius(
118 const HdDoubleDataSourceHandle &radius);
119
121 HD_API
122 HdContainerDataSourceHandle Build();
123
124 private:
125 HdDoubleDataSourceHandle _radius;
126
127 };
128
130};
131
132PXR_NAMESPACE_CLOSE_SCOPE
133
134#endif
Represents an object that can identify the location of a data source.
Schema classes represent a structured view of the inherently unstructured container data source passe...
Definition: schema.h:26
Utility class for setting sparse sets of child data source fields to be filled as arguments into Buil...
Definition: sphereSchema.h:114
HD_API HdContainerDataSourceHandle Build()
Returns a container data source containing the members set thus far.
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:71
#define TF_DECLARE_PUBLIC_TOKENS(...)
Macro to define public tokens.
Definition: staticTokens.h:81