OpenSubdiv
Loading...
Searching...
No Matches
options.h
Go to the documentation of this file.
1//
2// Copyright 2014 DreamWorks Animation LLC.
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://opensubdiv.org/license.
6//
7#ifndef OPENSUBDIV3_SDC_OPTIONS_H
8#define OPENSUBDIV3_SDC_OPTIONS_H
9
10#include "../version.h"
11
12namespace OpenSubdiv {
13namespace OPENSUBDIV_VERSION {
14
15namespace Sdc {
16
33
34class Options {
35public:
59
60public:
61
62 Options() : _vtxBoundInterp(VTX_BOUNDARY_NONE),
63 _fvarLinInterp(FVAR_LINEAR_ALL),
64 _creasingMethod(CREASE_UNIFORM),
65 _triangleSub(TRI_SUB_CATMARK) { }
66
67 //
68 // Trivial get/set methods:
69 //
70
73
75 void SetVtxBoundaryInterpolation(VtxBoundaryInterpolation b) { _vtxBoundInterp = (EnumIntType) b; }
76
79
81 void SetFVarLinearInterpolation(FVarLinearInterpolation b) { _fvarLinInterp = (EnumIntType) b; }
82
84 CreasingMethod GetCreasingMethod() const { return (CreasingMethod) _creasingMethod; }
85
87 void SetCreasingMethod(CreasingMethod c) { _creasingMethod = (EnumIntType) c; }
88
91
93 void SetTriangleSubdivision(TriangleSubdivision t) { _triangleSub = (EnumIntType) t; }
94
95private:
96 // Use a small integer type to pack these rather than bitfields:
97 typedef unsigned char EnumIntType;
98
99 EnumIntType _vtxBoundInterp;
100 EnumIntType _fvarLinInterp;
101 EnumIntType _creasingMethod;
102 EnumIntType _triangleSub;
103};
104
105} // end namespace sdc
106
107} // end namespace OPENSUBDIV_VERSION
108using namespace OPENSUBDIV_VERSION;
109} // end namespace OpenSubdiv
110
111#endif /* OPENSUBDIV3_SDC_OPTIONS_H */
All supported options applying to subdivision scheme.
Definition options.h:34
@ TRI_SUB_CATMARK
Catmark weights (Catmark scheme only)
Definition options.h:56
@ TRI_SUB_SMOOTH
"smooth triangle" weights (Catmark scheme only)
Definition options.h:57
TriangleSubdivision GetTriangleSubdivision() const
Get triangle subdivision weights rule (Catmark scheme only !)
Definition options.h:90
CreasingMethod GetCreasingMethod() const
Get edge crease rule.
Definition options.h:84
void SetFVarLinearInterpolation(FVarLinearInterpolation b)
Set face-varying interpolation rule.
Definition options.h:81
void SetTriangleSubdivision(TriangleSubdivision t)
Set triangle subdivision weights rule (Catmark scheme only !)
Definition options.h:93
VtxBoundaryInterpolation GetVtxBoundaryInterpolation() const
Get vertex boundary interpolation rule.
Definition options.h:72
@ FVAR_LINEAR_CORNERS_ONLY
sharpen corners only
Definition options.h:45
@ FVAR_LINEAR_BOUNDARIES
sharpen all boundaries ("always sharp")
Definition options.h:48
@ FVAR_LINEAR_CORNERS_PLUS2
("edge and corner + propagate corner")
Definition options.h:47
@ FVAR_LINEAR_ALL
bilinear interpolation ("bilinear")
Definition options.h:49
@ FVAR_LINEAR_NONE
smooth everywhere ("edge only")
Definition options.h:44
void SetVtxBoundaryInterpolation(VtxBoundaryInterpolation b)
Set vertex boundary interpolation rule.
Definition options.h:75
FVarLinearInterpolation GetFVarLinearInterpolation() const
Get face-varying interpolation rule.
Definition options.h:78
@ VTX_BOUNDARY_EDGE_ONLY
all boundary edges sharpened and interpolated
Definition options.h:39
void SetCreasingMethod(CreasingMethod c)
Set edge crease rule.
Definition options.h:87