SmallChange  1.0.0
A collection of extensions to Coin3D
Loading...
Searching...
No Matches
SbCubicSpline.h
1#ifndef COIN_SBCUBICSPLINE_H
2#define COIN_SBCUBICSPLINE_H
3
4/**************************************************************************\
5 * Copyright (c) Kongsberg Oil & Gas Technologies AS
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 *
15 * Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * Neither the name of the copyright holder nor the names of its
20 * contributors may be used to endorse or promote products derived from
21 * this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34\**************************************************************************/
35
36#include <Inventor/lists/SbList.h>
37#include <Inventor/SbMatrix.h>
38#include <Inventor/SbVec3f.h>
39#include <Inventor/SbVec4f.h>
40
41#include <SmallChange/basic.h>
42
43
44class SMALLCHANGE_DLL_API SbCubicSpline {
45public:
46 SbCubicSpline(const int approxcount = 256);
48
49 enum Type {
50 CATMULL_ROM = 0,
51 B_SPLINE,
52 BEZIER
53 };
54
55 void setBasisMatrix(const Type type);
56 void setBasisMatrix(const SbMatrix & m);
57 const SbMatrix & getBasisMatrix(void) const;
58 void setLoop(const SbBool loop);
59 void setControlPoints(const SbVec3f * ptr, const int num);
60 void setControlPoints(const SbVec4f * pts, const int num);
61
62 // runtime
63
64 SbVec3f getPoint(const float t);
65 SbVec3f getTangent(const float t);
66 int getSegmentInfo(const float t, float & segt) const;
67 float getSegmentLength(const int idx);
68
69private:
70
71 int getSegdata(const float t, float & segt);
72 SbVec3f getPoint(const SbMatrix & m, const float t);
73 SbVec3f getTangent(const SbMatrix & m, const float t);
74 void initMatrix(const int seg, SbMatrix & m);
75 void initialize(void);
76 int getSegnum(const float time) const;
77 int clampSegnum(const int q) const;
78
79 SbList <SbVec4f> ctrlpts;
80 SbList <float> segstarttimes;
81 SbList <float> segdurations;
82 SbList <float> seglens;
83
84 SbBool needinit;
85 SbBool loop;
86 int approxcount;
87 int currsegment;
88 SbMatrix currmatrix;
89 SbMatrix basismatrix;
90};
91
92
93#endif // COIN_SBCUBICSPLINE_H
Definition SbCubicSpline.h:44