Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(4) |
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(68) |
Feb
(72) |
Mar
(46) |
Apr
(44) |
May
(40) |
Jun
(54) |
Jul
(26) |
Aug
(86) |
Sep
(95) |
Oct
(151) |
Nov
(65) |
Dec
(34) |
2003 |
Jan
(22) |
Feb
(70) |
Mar
(24) |
Apr
(28) |
May
(50) |
Jun
(31) |
Jul
(17) |
Aug
(42) |
Sep
(27) |
Oct
(71) |
Nov
(27) |
Dec
(71) |
2004 |
Jan
(40) |
Feb
(30) |
Mar
(20) |
Apr
(22) |
May
(41) |
Jun
(9) |
Jul
(24) |
Aug
(41) |
Sep
(35) |
Oct
(8) |
Nov
(5) |
Dec
(4) |
2005 |
Jan
(27) |
Feb
(13) |
Mar
(18) |
Apr
(7) |
May
(10) |
Jun
(36) |
Jul
(28) |
Aug
(17) |
Sep
(1) |
Oct
(11) |
Nov
(12) |
Dec
(15) |
2006 |
Jan
(99) |
Feb
(5) |
Mar
(31) |
Apr
(26) |
May
(20) |
Jun
(33) |
Jul
(45) |
Aug
(18) |
Sep
(2) |
Oct
(19) |
Nov
(3) |
Dec
(8) |
2007 |
Jan
(1) |
Feb
(15) |
Mar
(20) |
Apr
|
May
(4) |
Jun
(6) |
Jul
(11) |
Aug
(11) |
Sep
(11) |
Oct
(19) |
Nov
(25) |
Dec
(46) |
2008 |
Jan
(42) |
Feb
(20) |
Mar
(43) |
Apr
(24) |
May
(4) |
Jun
|
Jul
(19) |
Aug
(63) |
Sep
(33) |
Oct
(17) |
Nov
(36) |
Dec
(20) |
2009 |
Jan
(36) |
Feb
(18) |
Mar
(144) |
Apr
(36) |
May
(11) |
Jun
(7) |
Jul
(8) |
Aug
(21) |
Sep
(33) |
Oct
(7) |
Nov
(2) |
Dec
(1) |
2010 |
Jan
(33) |
Feb
(3) |
Mar
(34) |
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
(3) |
Aug
(28) |
Sep
(8) |
Oct
(12) |
Nov
(11) |
Dec
(44) |
2011 |
Jan
(30) |
Feb
(10) |
Mar
(8) |
Apr
(23) |
May
(8) |
Jun
(9) |
Jul
(3) |
Aug
(9) |
Sep
(5) |
Oct
(9) |
Nov
(11) |
Dec
(24) |
2012 |
Jan
(6) |
Feb
(32) |
Mar
(8) |
Apr
(26) |
May
(13) |
Jun
(51) |
Jul
(21) |
Aug
(7) |
Sep
(9) |
Oct
(13) |
Nov
(5) |
Dec
(10) |
2013 |
Jan
(56) |
Feb
(6) |
Mar
(15) |
Apr
(4) |
May
(24) |
Jun
(4) |
Jul
(9) |
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
(8) |
2014 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
(12) |
Jun
(3) |
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(19) |
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(22) |
Dec
(25) |
2016 |
Jan
(9) |
Feb
(9) |
Mar
(13) |
Apr
|
May
|
Jun
(2) |
Jul
(4) |
Aug
|
Sep
|
Oct
(11) |
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
(4) |
2
|
3
|
4
(4) |
5
(1) |
6
|
7
(6) |
8
(3) |
9
|
10
|
11
(4) |
12
(3) |
13
|
14
(3) |
15
(10) |
16
|
17
|
18
(11) |
19
(11) |
20
(2) |
21
(1) |
22
|
23
|
24
|
25
(3) |
26
(5) |
27
(1) |
28
|
|
|
From: Peter Vanroose <Peter.Vanroose@es...> - 2002-02-26 18:31:42
|
> I need an ellipse whose parameters can be changed after construction > because I'd like to update them. vsol_conic_2d now has two extra methods: set_central_parameters and set_parabola_parameters. The former sets the midpoint, main axes lengths and direction of main axis of an ellipse (if both lenghts are positive) or hyperbola, the latter sets symmetry axis, top and excentricity of a parabola. The arguments they take are identical to those taken by the corresponding constructors, and should be identical to the parameters returned by the ellipse_parameters, hyperbola_parameters and parabola_parameters methods. Peter. P.S. Note that there is (and has been for quite some time) an error in hyperbola_parameters; The added test in test_vsol_conic fails on this. |
From: <Peter.Vanroose@es...> - 2002-02-26 12:56:57
|
> set_ellipse_parameters(cx, cy, phi, width, height) Yes, such a function can be added, I believe. Currently the parent class vgl_conic<double> has the method set(double a, double b, double c, double d, double e, double f) to set conic parameters (i.e., coefficients of its equation). Setting ellipse parameters will eventually just set these 6, just like the "ellipse/hyperbola" constructor of vsol_conic_2d does. Peter. |
From: David Serby <dserby@vi...> - 2002-02-26 12:48:58
|
Hi, why is it not possible to change the ellipse parameters (cx, cy, phi, width, height) after construction. Is there any reason why there is no setting-function like set_ellipse_parameters(cx, cy, phi, width, height)? I need an ellipse whose parameters can be changed after construction because I'd like to update them. David |
From: <Peter.Vanroose@es...> - 2002-02-26 09:15:28
|
> /usr/local/src/vxl-source/gel/vsol/vsol_point_2d.h:56: warning: base > class `class vsol_spatial_object_2d' should be explicitly initialized in > the copy constructor My guess is that this is caused by the constructor in the derived class being inlined, while the parent class constructor isn't. I propose to make all constructors in vsol_spatial_object_2d inline. Peter. |
From: David Serby <dserby@vi...> - 2002-02-26 08:03:06
|
Hello, when I include the file vsol_point_2d.h and compile my program I get the following compiler (g++ 2.95) warning: /usr/local/src/vxl-source/gel/vsol/vsol_point_2d.h: In method `vsol_point_2d::vsol_point_2d(const vsol_point_2d &)': /usr/local/src/vxl-source/gel/vsol/vsol_point_2d.h:56: warning: base class `class vsol_spatial_object_2d' should be explicitly initialized in the copy constructor I don't see why the base class constructor should be explicitely initialized. Shouldn't it be implicitely invoked ? Where is the problem? It's just a compiler warning and not an error, but nevertheless I'd appreciate if it could be suppressed. Regards, David |