HDK
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
SOP_Error.h
Go to the documentation of this file.
1
/*
2
* PROPRIETARY INFORMATION. This software is proprietary to
3
* Side Effects Software Inc., and is not to be reproduced,
4
* transmitted, or disclosed in any way without written permission.
5
*
6
* NAME: SOP_Error.h (C++)
7
*
8
* COMMENTS:
9
* This class is used to store SOP errors or warnings.
10
*
11
*/
12
13
#ifndef __SOP_Error__
14
#define __SOP_Error__
15
16
enum
SOP_ErrorCodes
17
{
18
//
19
// Cooking errors
20
21
SOP_ERR_INVALID_SRC
= 0,
// No source or source has error
22
23
//
24
// File errors
25
SOP_ERR_FILEGEO
,
// File error on load/save geometry
26
27
//
28
// Some common cooking errors
29
30
SOP_ERR_BADGROUP
,
// Invalid group specification
31
SOP_ERR_BAD_POINTGROUP
,
32
SOP_MESSAGE
,
33
SOP_ERR_ILLEGAL_GROUPNAME
,
34
SOP_ERR_ILLEGAL_GROUPPREFIX
,
35
SOP_GROUP_DUPLICATE_NAME
,
// SOP_Group error
36
37
// Some messages for the Lsystem sop
38
SOP_LSYSTEM_STR_FIRST
,
// first line
39
SOP_LSYSTEM_STR_OTHERS
,
// other lines
40
SOP_LSYSTEM_PIC_FILE
,
// invalid raster file
41
42
SOP_ERR_ADD_BAD_FACE
,
43
SOP_ERR_ADD_BAD_POINT
,
44
SOP_ERR_GRP_NONAME
,
45
46
SOP_LOAD_UNKNOWN_ASCII_FLAG
,
//Skipping unknown flag (%s)
47
SOP_LOAD_UNKNOWN_BINARY_FLAG
,
//Skipping unknown flag
48
49
SOP_BAD_FLAG_FORMAT
,
//expecting sopflags = ...
50
51
SOP_NO_NORMALS
,
//cannot compute normals
52
53
SOP_BAD_DIVS
,
//invalid division/segment size
54
55
SOP_BAD_OBJECT_MERGED
,
//Bad object in object_merge
56
SOP_BAD_SOP_MERGED
,
//Bad sop in object_merge
57
58
SOP_SKELETON_VOLUMES
,
// Number of volumes.
59
SOP_SKELETON_POINTS
,
// Number of points found.
60
SOP_SKELETON_POINTS_INVALID
,
// Deformation point count changed
61
SOP_SKELETON_VOLUMES_INVALID
,
// Skeleton circle count changed
62
SOP_SKELETON_HIERARCHY_INVALID
,
// Ellipse hierarchy changed
63
64
SOP_DEL_DEGENERATE
,
// Deletion causes degenerate prims
65
66
SOP_UNMATCH_SOURCE
,
// two source have unmatch geometry
67
68
SOP_BASIS_INVALID
,
// non-spline type #26
69
SOP_BASIS_SELECTION
,
// select one of U or V
70
SOP_BASIS_INDEX
,
// index exceeds primitives
71
SOP_BASIS_BASIS
,
// invalid basis
72
SOP_BASIS_INCOMPATIBLE
,
// incompatible bases, can't copy
73
74
SOP_SWEEP_REF_NPTS
,
// reference path and backbone
75
// does not have same # of points
76
SOP_SWEEP_REF_NPRIMS
,
// reference path and backbone
77
// does not have same # of primitives
78
79
SOP_ATTRIBUTE_INVALID
,
// Invalid attribute name
80
81
SOP_DEFORM_NO_CAPT_ATR
,
// no capture attrib. for deformation
82
SOP_DEFORM_INVALID_REGION
,
// can't find a captured region
83
SOP_DEFORM_NUM_REGIONS
,
// number of regions found
84
SOP_DEFORM_MAX_REGIONS_PERPOINT
,
// max regions assigned per point
85
86
SOP_CURVECLAY_NO_PROFILE
,
// no profiles on the surface
87
88
SOP_TRIMGRAPH_NO_LOOP
,
// no loop can be formed from graph.
89
SOP_TRIMGRAPH_TWO_SIDES
,
// need exactly two xrsections on side
90
91
SOP_CAPTURE_INVALID_PARENT
,
// invalid hierarchy
92
SOP_CAPTURE_INVALID_REGION
,
// invalid region bone hierarchy
93
SOP_CAPTURE_NO_REGIONS
,
// no capture regions found in hiearchy
94
SOP_CAPTURE_NO_COLOR
,
// capture region missing color attrib
95
SOP_CAPTURE_SURF_ERR
,
// error in weight from surface calc.
96
SOP_CAPTURE_NUMPTS_CHANGE
,
// num pts changed since capture frame
97
SOP_CAPTURE_CAPTFRAME_ERR
,
// couldn't cook geo at capt frame
98
SOP_CAPTURE_LOAD_ERR
,
// override file reading error
99
SOP_CAPTURE_FILE_ERR
,
// override file not found
100
SOP_CAPTURE_NPTS_MSG
,
// number of points captured message
101
102
SOP_CHANNEL_INVALID_INPUT_CHOP
,
// couldn't cook chop
103
SOP_CHANNEL_MISSING_RBRACKET
,
// missing )
104
SOP_CHANNEL_INVALID_ATTRIBUTE
,
// couldnt find geo attribute
105
SOP_CHANNEL_INVALID_INDEX
,
// index out of range for attribute
106
SOP_CHANNEL_MISMATCHED_SCOPE
,
// num chans and num attrs differ
107
SOP_CHANNEL_INVALID_CHANNEL
,
// couldnt find channel
108
109
SOP_SOFTLOCK_PTNUM_CHANGE
,
// num of points changed since softlock
110
SOP_SOFTLOCK_PROMOTED
,
// softlock promoted to a hardlock
111
112
SOP_STAMP_TOKEN_IN_USE
,
// stamp parameter already used
113
114
SOP_POLYPATCH_TOO_FEW_ROWCOL
,
// need more rows, columns or clamping
115
116
SOP_CARVE_INVALID_RANGE
,
// need full ranges
117
118
SOP_VEX_ERROR
,
// sop vex error
119
120
SOP_SYNTAX_ERROR
,
// error parsing points list
121
SOP_CURVE_ERROR
,
// curve couldn't be drawn
122
SOP_POINT_DNE
,
// referenced point doesn't exist
123
SOP_NEED_MORE_POINTS
,
// not enough points specified
124
125
SOP_CAPTURE_NO_CAPTFRAME
,
// missing pCaptFrame attribute
126
127
SOP_ERR_BADNODE
,
// Node not found or wrong type.
128
129
SOP_ERR_SELFMERGE
,
// Cannot use oneself as the source
130
// of an object merge.
131
132
SOP_ERR_SURFACEGROUPRANGE
,
// Refernce to a non-existent surface
133
// group.
134
135
SOP_ERR_CENTERMISMATCH
,
// Mismatch on center points.
136
137
SOP_ERR_CENTERGROUPMISSING
,
// Missing center groups.
138
139
SOP_ERR_MISMATCHBACKQUOTE
,
// Mismatch backquote in rule %s.
140
141
// SOP_WireDeform errors
142
SOP_ERR_MISSING_RADIUS
,
// Missing radiusf primitive attribute
143
SOP_ERR_RESTDEFORM_MISMATCH
,
// Rest and deform geometry mismatch
144
SOP_WARN_MISSING_WCAPT_PRIMU
,
// Missing pCaptWirePrimU attribute
145
SOP_ERR_MISSING_WCAPT
,
// Missing pCaptWirePrimU attribute
146
SOP_ERR_MISSING_WCAPT_U
,
// Missing pCaptWireU attribute
147
SOP_ERR_MISSING_WCAPT_V
,
// Missing pCaptWireV attribute
148
SOP_ERR_MISMATCH_WCAPT_U
,
// Mismatched pCaptWireU attribute
149
SOP_ERR_MISMATCH_WCAPT_V
,
// Mismatched pCaptWireU attribute
150
SOP_ERR_MISSING_PRIMITIVE
,
// Missing primitive reference %s
151
SOP_ERR_NO_DEFORM_EFFECT
,
// No deformation.
152
153
// SOP_WireCapture errors
154
SOP_WARN_NO_PTS_CAPTURED
,
// Warning: No points captured.
155
156
SOP_ERR_INVALID_CREGION
,
// Error: Invalid cregion %s
157
158
SOP_ERR_MISMATCH_VERTEX
,
// Primitives have mismatching vertex counts
159
SOP_ERR_MISMATCH_POINT
,
// Reference and Target have different point
160
SOP_ERR_MISMATCH_PRIMITIVE
,
// Reference and Target have different prim
161
SOP_ERR_MISMATCH_POINTLIST
,
// Target and Ref point lists must be same len
162
SOP_ERR_MISMATCH_CONNECT
,
// Connected piece mismatch
163
SOP_ERR_CONNECT_FAIL
,
// A connected piece didn't match.
164
SOP_ERR_MATCH_DUPLICATE
,
// Ambiguous matching.
165
166
SOP_ERR_INVALID_ATTRIBUTE_NAME
,
// Invalid attribute name %s.
167
SOP_ERR_MISSING_UV
,
// Missing uv vertex attribute.
168
169
SOP_UVPELT_PRIMITIVE_INDEX
,
// index exceeds primitives
170
SOP_UVPELT_BOUNDARY_POINTS
,
// no boundary points found
171
172
// SOP_Facet errors
173
SOP_WARN_PLANAR_INCOMPLETE
,
// Unable to make primitive planar
174
175
SOP_ERR_NOT_METABALL
,
// Input %s does not contain metaballs
176
SOP_ERR_MISSING_MCAPT
,
// Input %s is missing metaCapt point attribute
177
SOP_ERR_MISSING_MCAPTFRAME
,
// Input %s is missing metaCaptFrame attribute
178
SOP_ERR_MISSING_MCAPTGROUPS
,
// Input %s is missing metaCaptGroups attribute
179
SOP_WARN_MISSING_COLOR
,
// Input %s is missing pt/primitive Cd attribute
180
SOP_WARN_CAPTOBJ_INVALID
,
// Capture Object %s is invalid or won't cook
181
182
SOP_ERR_MISSING_MCAPTDATA
,
// Input %s is missing metaCaptData attribute
183
SOP_ERR_MISSING_MCAPTPATHS
,
// Input %s is missing metaCaptPaths attribute
184
SOP_ERR_MISSING_MCAPTGROUPMAP
,
// Input %s misisng metaCaptGroupMap attr
185
186
SOP_ERR_PRIM_NUMS_DIFFERENT
,
// Inputs contain different numbers of primitives.
187
SOP_ERR_NOT_OPEN_CURVE
,
// Primitives must be open curves.
188
189
// Muscle sliding errors for Capture/Deform meta
190
SOP_ERR_MISSING_ANCHORXFORMS
,
191
SOP_ERR_INVALID_ANCHORPATH
,
192
193
SOP_ERR_RENAME
,
// Cannot rename group '%s'
194
SOP_ERR_RENAME_DUPLICATE
,
// Name conflict renaming '%s' to '%s'
195
SOP_ERR_CONVERT_DUPLICATE
,
// Name conflict converting '%s' to '%s'
196
SOP_ERR_UNMATCHED_GROUP_PATTERN
,
// No groups match pattern '%s'
197
198
// DeformMuscle errors
199
SOP_ERR_MISSING_INFLATENORMALS
,
200
SOP_ERR_MISSING_CENTERINPUT
,
201
SOP_ERR_METABALL_COUNT_CHANGED
,
// DeformMuscle and DeformMeta
202
SOP_ERR_METABALLS_NO_GROUPS
,
// Capture Meta - metaballs aren't in groups.
203
SOP_ERR_BAD_MUSCLE_NAME
,
// Invalid muscle name specification.
204
SOP_ERR_CANNOT_REMOVE_REGION
,
// Error removing capture region %s.
205
206
// Attribute transfer errors
207
SOP_ERR_MISSMATCH_GROUP_TYPE
,
// Specified input group is not a %s.
208
209
// PointCloudIso error
210
SOP_ERR_MISSING_POINT_NORMALS
,
// Input SOP missing point normals
211
212
// SOPZ_DopImport error
213
SOP_ERR_OBJECT_NAME_CONFLICT
,
// Duplicate source DOP object names.
214
SOP_ERR_NO_DOP_OBJECTS
,
// No DOP object names specified.
215
216
SOP_ERR_MDD_MISMATCH_POINT
,
// MDD file and input have different # points
217
SOP_ERR_FILEMDD
,
// Please specify an MDD file
218
SOP_ERR_MDDCORRUPT
,
// MDD file "%s" may be corrupt
219
SOP_ERR_MDD_EXTRA_DATA
,
// Unknown extra data (%s) found in MDD file
220
221
SOP_ERR_CAPT_MISMATCH_POINT
,
// Input and painted geometry don't have
222
// matching point counts.
223
224
SOP_ERR_METABALL_THRESHOLDMODE_BAD_WEIGHT
,
// Bad weight for threshold mode
225
SOP_ERR_MANIFOLD_GEOMETRY
,
// Invalid Geometry
226
227
SOP_ERR_INVALID_REGEX
,
// Invalid regular expression in string edit
228
SOP_ERR_CREATE_DIRECTORY_FAIL
,
// Could not create directory %s
229
230
SOP_ERR_MULTIPLE_OUTPUT
,
// Multiple outputs with same index %s
231
232
SOP_ERR_SCENE_STYLESHEET_ERROR
,
// Error parsing a scene style sheet.
233
SOP_ERR_OBJECT_STYLESHEET_ERROR
,
// Error parsing an object style sheet.
234
235
// SOP_PolySplit2 errors
236
SOP_ERR_TOO_MANY_CURVES
,
237
SOP_ERR_WRONG_CURVE_TYPE
,
238
SOP_ERR_SPLITTING_DISCONNECTED_GEOMETRY
,
239
SOP_ERR_EDGELOOP_NON_EDGE_POINT
,
240
SOP_ERR_POINT_ON_FACE
,
241
SOP_ERR_SPLITTING_NON_EXISTANT_EDGE
,
242
243
// SOP_PolyFill errors
244
SOP_ERR_NO_UNSHARED_EDGES
,
245
SOP_WARN_NON_MANIFOLD
,
246
SOP_WARN_ODD_EDGE_PATCH
,
247
SOP_ERR_POLYFILL_LOOP_DISTANCE_INVALID
,
248
SOP_WARN_NO_PLANE_NORMAL
,
249
SOP_WARN_ONLY_ONE_CORNER
,
250
SOP_WARN_CONFLICTING_CORNERS
,
251
252
// SOP_LidarImport errors
253
SOP_ERR_MISSING_POSITION
,
254
SOP_WARN_ATTRIBS_NOT_FOUND
,
255
SOP_ERR_LIDAR_READER_ERROR
,
256
SOP_WARN_PARMS_NOT_APPLICABLE
,
257
258
SOP_WARN_DEFORM_REGION_FAST_INCOMPATIBLE
,
// region isn't compatible with fast deform
259
260
SOP_ERR_CHOP_NODE_NOT_FOUND
,
// Error finding chop node
261
262
SOP_LOCAL_FRAME_FAIL
,
// Unable to compute local frame
263
264
SOP_NUM_ERROR_TYPES
// sentinel
265
};
266
267
#endif
SOP_DEL_DEGENERATE
Definition:
SOP_Error.h:64
SOP_ERR_POINT_ON_FACE
Definition:
SOP_Error.h:240
SOP_ATTRIBUTE_INVALID
Definition:
SOP_Error.h:79
SOP_WARN_ODD_EDGE_PATCH
Definition:
SOP_Error.h:246
SOP_LOAD_UNKNOWN_BINARY_FLAG
Definition:
SOP_Error.h:47
SOP_ERR_SELFMERGE
Definition:
SOP_Error.h:129
SOP_LOAD_UNKNOWN_ASCII_FLAG
Definition:
SOP_Error.h:46
SOP_ERR_MISSING_WCAPT_V
Definition:
SOP_Error.h:147
SOP_ERR_INVALID_ATTRIBUTE_NAME
Definition:
SOP_Error.h:166
SOP_ERR_CONNECT_FAIL
Definition:
SOP_Error.h:163
SOP_ERR_MISSING_MCAPTPATHS
Definition:
SOP_Error.h:183
SOP_ERR_MISSMATCH_GROUP_TYPE
Definition:
SOP_Error.h:207
SOP_ERR_METABALLS_NO_GROUPS
Definition:
SOP_Error.h:202
SOP_ERR_SPLITTING_NON_EXISTANT_EDGE
Definition:
SOP_Error.h:241
SOP_ERR_POLYFILL_LOOP_DISTANCE_INVALID
Definition:
SOP_Error.h:247
SOP_CHANNEL_INVALID_CHANNEL
Definition:
SOP_Error.h:107
SOP_SKELETON_POINTS_INVALID
Definition:
SOP_Error.h:60
SOP_ERR_MANIFOLD_GEOMETRY
Definition:
SOP_Error.h:225
SOP_DEFORM_INVALID_REGION
Definition:
SOP_Error.h:82
SOP_ERR_FILEMDD
Definition:
SOP_Error.h:217
SOP_TRIMGRAPH_TWO_SIDES
Definition:
SOP_Error.h:89
SOP_UNMATCH_SOURCE
Definition:
SOP_Error.h:66
SOP_ERR_CHOP_NODE_NOT_FOUND
Definition:
SOP_Error.h:260
SOP_ERR_SPLITTING_DISCONNECTED_GEOMETRY
Definition:
SOP_Error.h:238
SOP_CAPTURE_LOAD_ERR
Definition:
SOP_Error.h:98
SOP_ERR_OBJECT_STYLESHEET_ERROR
Definition:
SOP_Error.h:233
SOP_CHANNEL_INVALID_INPUT_CHOP
Definition:
SOP_Error.h:102
SOP_ERR_ADD_BAD_FACE
Definition:
SOP_Error.h:42
SOP_ERR_MISMATCH_POINT
Definition:
SOP_Error.h:159
SOP_BASIS_INVALID
Definition:
SOP_Error.h:68
SOP_BAD_FLAG_FORMAT
Definition:
SOP_Error.h:49
SOP_MESSAGE
Definition:
SOP_Error.h:32
SOP_ERR_GRP_NONAME
Definition:
SOP_Error.h:44
SOP_ERR_MISSING_WCAPT
Definition:
SOP_Error.h:145
SOP_ERR_NO_UNSHARED_EDGES
Definition:
SOP_Error.h:244
SOP_ERR_SCENE_STYLESHEET_ERROR
Definition:
SOP_Error.h:232
SOP_CAPTURE_INVALID_PARENT
Definition:
SOP_Error.h:91
SOP_CHANNEL_MISSING_RBRACKET
Definition:
SOP_Error.h:103
SOP_ErrorCodes
SOP_ErrorCodes
Definition:
SOP_Error.h:16
SOP_ERR_CANNOT_REMOVE_REGION
Definition:
SOP_Error.h:204
SOP_WARN_NO_PLANE_NORMAL
Definition:
SOP_Error.h:248
SOP_SOFTLOCK_PTNUM_CHANGE
Definition:
SOP_Error.h:109
SOP_CAPTURE_FILE_ERR
Definition:
SOP_Error.h:99
SOP_ERR_INVALID_ANCHORPATH
Definition:
SOP_Error.h:191
SOP_WARN_PARMS_NOT_APPLICABLE
Definition:
SOP_Error.h:256
SOP_POLYPATCH_TOO_FEW_ROWCOL
Definition:
SOP_Error.h:114
SOP_ERR_BADGROUP
Definition:
SOP_Error.h:30
SOP_BAD_OBJECT_MERGED
Definition:
SOP_Error.h:55
SOP_CHANNEL_INVALID_INDEX
Definition:
SOP_Error.h:105
SOP_ERR_UNMATCHED_GROUP_PATTERN
Definition:
SOP_Error.h:196
SOP_BAD_SOP_MERGED
Definition:
SOP_Error.h:56
SOP_ERR_RENAME
Definition:
SOP_Error.h:193
SOP_CHANNEL_INVALID_ATTRIBUTE
Definition:
SOP_Error.h:104
SOP_SOFTLOCK_PROMOTED
Definition:
SOP_Error.h:110
SOP_SWEEP_REF_NPRIMS
Definition:
SOP_Error.h:76
SOP_NO_NORMALS
Definition:
SOP_Error.h:51
SOP_ERR_MISSING_UV
Definition:
SOP_Error.h:167
SOP_ERR_LIDAR_READER_ERROR
Definition:
SOP_Error.h:255
SOP_ERR_ILLEGAL_GROUPNAME
Definition:
SOP_Error.h:33
SOP_ERR_MISSING_MCAPTGROUPS
Definition:
SOP_Error.h:178
SOP_ERR_CREATE_DIRECTORY_FAIL
Definition:
SOP_Error.h:228
SOP_CURVE_ERROR
Definition:
SOP_Error.h:121
SOP_POINT_DNE
Definition:
SOP_Error.h:122
SOP_ERR_INVALID_CREGION
Definition:
SOP_Error.h:156
SOP_ERR_NO_DEFORM_EFFECT
Definition:
SOP_Error.h:151
SOP_ERR_MDD_EXTRA_DATA
Definition:
SOP_Error.h:219
SOP_ERR_MDDCORRUPT
Definition:
SOP_Error.h:218
SOP_WARN_MISSING_WCAPT_PRIMU
Definition:
SOP_Error.h:144
SOP_ERR_METABALL_THRESHOLDMODE_BAD_WEIGHT
Definition:
SOP_Error.h:224
SOP_ERR_MISSING_INFLATENORMALS
Definition:
SOP_Error.h:199
SOP_SKELETON_VOLUMES
Definition:
SOP_Error.h:58
SOP_ERR_INVALID_REGEX
Definition:
SOP_Error.h:227
SOP_ERR_CENTERMISMATCH
Definition:
SOP_Error.h:135
SOP_CHANNEL_MISMATCHED_SCOPE
Definition:
SOP_Error.h:106
SOP_ERR_NO_DOP_OBJECTS
Definition:
SOP_Error.h:214
SOP_ERR_INVALID_SRC
Definition:
SOP_Error.h:21
SOP_ERR_MISSING_POSITION
Definition:
SOP_Error.h:253
SOP_ERR_RENAME_DUPLICATE
Definition:
SOP_Error.h:194
SOP_UVPELT_BOUNDARY_POINTS
Definition:
SOP_Error.h:170
SOP_ERR_EDGELOOP_NON_EDGE_POINT
Definition:
SOP_Error.h:239
SOP_LSYSTEM_PIC_FILE
Definition:
SOP_Error.h:40
SOP_LSYSTEM_STR_OTHERS
Definition:
SOP_Error.h:39
SOP_ERR_BADNODE
Definition:
SOP_Error.h:127
SOP_CARVE_INVALID_RANGE
Definition:
SOP_Error.h:116
SOP_ERR_WRONG_CURVE_TYPE
Definition:
SOP_Error.h:237
SOP_WARN_ATTRIBS_NOT_FOUND
Definition:
SOP_Error.h:254
SOP_NEED_MORE_POINTS
Definition:
SOP_Error.h:123
SOP_CAPTURE_NO_REGIONS
Definition:
SOP_Error.h:93
SOP_ERR_ADD_BAD_POINT
Definition:
SOP_Error.h:43
SOP_LOCAL_FRAME_FAIL
Definition:
SOP_Error.h:262
SOP_ERR_MISMATCH_WCAPT_V
Definition:
SOP_Error.h:149
SOP_DEFORM_NUM_REGIONS
Definition:
SOP_Error.h:83
SOP_ERR_CENTERGROUPMISSING
Definition:
SOP_Error.h:137
SOP_CAPTURE_CAPTFRAME_ERR
Definition:
SOP_Error.h:97
SOP_WARN_CONFLICTING_CORNERS
Definition:
SOP_Error.h:250
SOP_CAPTURE_INVALID_REGION
Definition:
SOP_Error.h:92
SOP_ERR_BAD_MUSCLE_NAME
Definition:
SOP_Error.h:203
SOP_ERR_ILLEGAL_GROUPPREFIX
Definition:
SOP_Error.h:34
SOP_ERR_MDD_MISMATCH_POINT
Definition:
SOP_Error.h:216
SOP_ERR_MISSING_MCAPT
Definition:
SOP_Error.h:176
SOP_TRIMGRAPH_NO_LOOP
Definition:
SOP_Error.h:88
SOP_ERR_MISMATCH_POINTLIST
Definition:
SOP_Error.h:161
SOP_ERR_OBJECT_NAME_CONFLICT
Definition:
SOP_Error.h:213
SOP_ERR_MISMATCH_WCAPT_U
Definition:
SOP_Error.h:148
SOP_LSYSTEM_STR_FIRST
Definition:
SOP_Error.h:38
SOP_CAPTURE_SURF_ERR
Definition:
SOP_Error.h:95
SOP_ERR_NOT_METABALL
Definition:
SOP_Error.h:175
SOP_ERR_MISSING_RADIUS
Definition:
SOP_Error.h:142
SOP_ERR_MISMATCH_CONNECT
Definition:
SOP_Error.h:162
SOP_ERR_NOT_OPEN_CURVE
Definition:
SOP_Error.h:187
SOP_SKELETON_HIERARCHY_INVALID
Definition:
SOP_Error.h:62
SOP_VEX_ERROR
Definition:
SOP_Error.h:118
SOP_ERR_TOO_MANY_CURVES
Definition:
SOP_Error.h:236
SOP_BASIS_INCOMPATIBLE
Definition:
SOP_Error.h:72
SOP_ERR_MISMATCH_VERTEX
Definition:
SOP_Error.h:158
SOP_WARN_DEFORM_REGION_FAST_INCOMPATIBLE
Definition:
SOP_Error.h:258
SOP_ERR_METABALL_COUNT_CHANGED
Definition:
SOP_Error.h:201
SOP_STAMP_TOKEN_IN_USE
Definition:
SOP_Error.h:112
SOP_ERR_MISMATCHBACKQUOTE
Definition:
SOP_Error.h:139
SOP_ERR_MATCH_DUPLICATE
Definition:
SOP_Error.h:164
SOP_ERR_SURFACEGROUPRANGE
Definition:
SOP_Error.h:132
SOP_GROUP_DUPLICATE_NAME
Definition:
SOP_Error.h:35
SOP_WARN_CAPTOBJ_INVALID
Definition:
SOP_Error.h:180
SOP_CAPTURE_NO_COLOR
Definition:
SOP_Error.h:94
SOP_ERR_MISSING_CENTERINPUT
Definition:
SOP_Error.h:200
SOP_DEFORM_MAX_REGIONS_PERPOINT
Definition:
SOP_Error.h:84
SOP_SYNTAX_ERROR
Definition:
SOP_Error.h:120
SOP_WARN_ONLY_ONE_CORNER
Definition:
SOP_Error.h:249
SOP_ERR_MISSING_MCAPTFRAME
Definition:
SOP_Error.h:177
SOP_CAPTURE_NUMPTS_CHANGE
Definition:
SOP_Error.h:96
SOP_ERR_MULTIPLE_OUTPUT
Definition:
SOP_Error.h:230
SOP_ERR_MISSING_POINT_NORMALS
Definition:
SOP_Error.h:210
SOP_BAD_DIVS
Definition:
SOP_Error.h:53
SOP_ERR_MISSING_MCAPTDATA
Definition:
SOP_Error.h:182
SOP_SKELETON_VOLUMES_INVALID
Definition:
SOP_Error.h:61
SOP_CAPTURE_NPTS_MSG
Definition:
SOP_Error.h:100
SOP_ERR_FILEGEO
Definition:
SOP_Error.h:25
SOP_ERR_MISMATCH_PRIMITIVE
Definition:
SOP_Error.h:160
SOP_ERR_BAD_POINTGROUP
Definition:
SOP_Error.h:31
SOP_ERR_MISSING_MCAPTGROUPMAP
Definition:
SOP_Error.h:184
SOP_WARN_NO_PTS_CAPTURED
Definition:
SOP_Error.h:154
SOP_WARN_NON_MANIFOLD
Definition:
SOP_Error.h:245
SOP_ERR_MISSING_ANCHORXFORMS
Definition:
SOP_Error.h:190
SOP_CURVECLAY_NO_PROFILE
Definition:
SOP_Error.h:86
SOP_NUM_ERROR_TYPES
Definition:
SOP_Error.h:264
SOP_BASIS_INDEX
Definition:
SOP_Error.h:70
SOP_ERR_CONVERT_DUPLICATE
Definition:
SOP_Error.h:195
SOP_DEFORM_NO_CAPT_ATR
Definition:
SOP_Error.h:81
SOP_WARN_PLANAR_INCOMPLETE
Definition:
SOP_Error.h:173
SOP_SKELETON_POINTS
Definition:
SOP_Error.h:59
SOP_UVPELT_PRIMITIVE_INDEX
Definition:
SOP_Error.h:169
SOP_ERR_MISSING_WCAPT_U
Definition:
SOP_Error.h:146
SOP_CAPTURE_NO_CAPTFRAME
Definition:
SOP_Error.h:125
SOP_SWEEP_REF_NPTS
Definition:
SOP_Error.h:74
SOP_ERR_PRIM_NUMS_DIFFERENT
Definition:
SOP_Error.h:186
SOP_ERR_MISSING_PRIMITIVE
Definition:
SOP_Error.h:150
SOP_ERR_CAPT_MISMATCH_POINT
Definition:
SOP_Error.h:221
SOP_WARN_MISSING_COLOR
Definition:
SOP_Error.h:179
SOP_ERR_RESTDEFORM_MISMATCH
Definition:
SOP_Error.h:143
SOP_BASIS_SELECTION
Definition:
SOP_Error.h:69
SOP_BASIS_BASIS
Definition:
SOP_Error.h:71
SOP
SOP_Error.h
Generated on Fri Nov 8 2024 03:41:30 for HDK by
1.8.6