Loading...
Searching...
No Matches
planeSchema.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_PLANE_SCHEMA_H
19#define PXR_IMAGING_HD_PLANE_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_PLANE_SCHEMA_TOKENS \
36 (plane) \
37 (doubleSided) \
38 (axis) \
39 (length) \
40 (width) \
41 (X) \
42 (Y) \
43 (Z) \
44
45TF_DECLARE_PUBLIC_TOKENS(HdPlaneSchemaTokens, HD_API,
46 HD_PLANE_SCHEMA_TOKENS);
47
48//-----------------------------------------------------------------------------
49
50
53class HdPlaneSchema : public HdSchema
54{
55public:
58
59 HdPlaneSchema(HdContainerDataSourceHandle container)
60 : HdSchema(container) {}
61
67 HD_API
68 static HdPlaneSchema GetFromParent(
69 const HdContainerDataSourceHandle &fromParentContainer);
70
72
73// --(BEGIN CUSTOM CODE: Schema Methods)--
74// --(END CUSTOM CODE: Schema Methods)--
75
78
79 HD_API
80 HdBoolDataSourceHandle GetDoubleSided() const;
81
82 HD_API
83 HdTokenDataSourceHandle GetAxis() const;
84
85 HD_API
86 HdDoubleDataSourceHandle GetLength() const;
87
88 HD_API
89 HdDoubleDataSourceHandle GetWidth() const;
90
92
95
98 HD_API
99 static const TfToken &GetSchemaToken();
100
103 HD_API
104 static const HdDataSourceLocator &GetDefaultLocator();
105
107
110
118 HD_API
119 static HdContainerDataSourceHandle
120 BuildRetained(
121 const HdBoolDataSourceHandle &doubleSided,
122 const HdTokenDataSourceHandle &axis,
123 const HdDoubleDataSourceHandle &length,
124 const HdDoubleDataSourceHandle &width
125 );
126
134 {
135 public:
136 HD_API
137 Builder &SetDoubleSided(
138 const HdBoolDataSourceHandle &doubleSided);
139 HD_API
140 Builder &SetAxis(
141 const HdTokenDataSourceHandle &axis);
142 HD_API
143 Builder &SetLength(
144 const HdDoubleDataSourceHandle &length);
145 HD_API
146 Builder &SetWidth(
147 const HdDoubleDataSourceHandle &width);
148
150 HD_API
151 HdContainerDataSourceHandle Build();
152
153 private:
154 HdBoolDataSourceHandle _doubleSided;
155 HdTokenDataSourceHandle _axis;
156 HdDoubleDataSourceHandle _length;
157 HdDoubleDataSourceHandle _width;
158
159 };
160
168 HD_API
169 static HdTokenDataSourceHandle BuildAxisDataSource(
170 const TfToken &axis);
171
173};
174
175PXR_NAMESPACE_CLOSE_SCOPE
176
177#endif
Represents an object that can identify the location of a data source.
Utility class for setting sparse sets of child data source fields to be filled as arguments into Buil...
Definition: planeSchema.h:134
HD_API HdContainerDataSourceHandle Build()
Returns a container data source containing the members set thus far.
Schema classes represent a structured view of the inherently unstructured container data source passe...
Definition: schema.h:26
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:92