1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
#include <2geom/d2.h>
#include <2geom/sbasis.h>
#include <2geom/sbasis-2d.h>
#include <2geom/bezier-to-sbasis.h>
#include <2geom/sbasis-geometric.h>
#include <toys/path-cairo.h>
#include <toys/toy-framework-2.h>
#include <time.h>
using std::vector;
using namespace Geom;
using namespace std;
// TODO:
// use path2
// replace Ray stuff with path2 line segments.
//-----------------------------------------------
class CurvatureTester: public Toy {
PointSetHandle curve_handle;
PointHandle sample_point;
void draw(cairo_t *cr, std::ostringstream *notify, int width, int height, bool save, std::ostringstream *timer_stream) override {
D2<SBasis> B = curve_handle.asBezier();
cairo_set_line_width (cr, 1);
cairo_set_source_rgba (cr, 0., 0.5, 0., 1);
cairo_d2_sb(cr, B);
cairo_stroke(cr);
sample_point.pos[1]=400;
sample_point.pos[0]=std::max(150.,sample_point.pos[0]);
sample_point.pos[0]=std::min(450.,sample_point.pos[0]);
cairo_move_to(cr, Geom::Point(150,400));
cairo_line_to(cr, Geom::Point(450,400));
cairo_set_source_rgba (cr, 0., 0., 0.5, 0.8);
cairo_stroke(cr);
double t=std::max(0.,std::min(1.,(sample_point.pos[0]-150)/300.));
Timer tm;
tm.ask_for_timeslice();
tm.start();
Piecewise<SBasis> K = curvature(B);
Timer::Time als_time = tm.lap();
*timer_stream << "curvature " << als_time << std::endl;
for(unsigned ix = 0; ix < K.segs.size(); ix++) {
D2<SBasis> Kxy;
Kxy[1] = Linear(400) - K.segs[ix]*300;
Kxy[0] = Linear(300*K.cuts[ix] + 150, 300*K.cuts[ix+1] + 150);
cairo_d2_sb(cr, Kxy);
cairo_stroke(cr);
}
double radius = K(t);
*notify<<"K="<<radius<<std::endl;
if (fabs(radius)>1e-4){
radius=1./radius;
Geom::Point normal=unit_vector(derivative(B)(t));
normal=rot90(normal);
Geom::Point center=B(t)-radius*normal;
cairo_arc(cr, center[0], center[1],fabs(radius), 0, M_PI*2);
draw_handle(cr, center);
draw_handle(cr, B(t));
}else{
Geom::Point p=B(t);
Geom::Point v=derivative(B)(t);
draw_handle(cr, p);
cairo_move_to(cr, p-100*v);
cairo_line_to(cr, p+100*v);
}
cairo_set_source_rgba (cr, 0.5, 0.2, 0., 0.8);
cairo_stroke(cr);
Toy::draw(cr, notify, width, height, save,timer_stream);
}
public:
CurvatureTester(){
if(handles.empty()) {
handles.push_back(&curve_handle);
handles.push_back(&sample_point);
for(unsigned i = 0; i < 4; i++)
curve_handle.push_back(150+uniform()*300,150+uniform()*300);
sample_point.pos = Geom::Point(250,300);
}
}
};
int main(int argc, char **argv) {
std::cout << "testing unit_normal(multidim_sbasis) based offset." << std::endl;
init(argc, argv, new CurvatureTester);
return 0;
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
//vim:expandtab:shiftwidth = 4:tabstop = 8:softtabstop = 4:encoding = utf-8:textwidth = 99 :
|