We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d2b7bc commit 45a71c2Copy full SHA for 45a71c2
panda/src/parametrics/nurbsCurveInterface.h
@@ -62,8 +62,10 @@ class EXPCL_PANDA_PARAMETRICS NurbsCurveInterface {
62
virtual bool set_knot(int n, PN_stdfloat t)=0;
63
virtual PN_stdfloat get_knot(int n) const=0;
64
65
- void write_cv(ostream &out, int n) const;
+ MAKE_SEQ(get_cvs, get_num_cvs, get_cv);
66
+ MAKE_SEQ(get_knots, get_num_knots, get_knot);
67
68
+ void write_cv(ostream &out, int n) const;
69
70
protected:
71
virtual int append_cv_impl(const LVecBase4 &v)=0;
0 commit comments