Skip to content

Commit a3b6d5a

Browse files
committed
Updated versioning
1 parent 90c3992 commit a3b6d5a

23 files changed

Lines changed: 68 additions & 46 deletions

src/camera/Camera.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
* An interface which allows the generation of rays in a three-dimensional
88
* space, corresponding to a sample in a two-dimensional image.
99
*
10-
* @author Niels Billen
11-
* @version 0.3
10+
* @author CGRG
11+
* @version 4.0.0
1212
*/
1313
public interface Camera {
14+
1415
/**
1516
* Generates a new ray from the given sample.
1617
*

src/camera/PerspectiveCamera.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@
99
/**
1010
* Implementation of a perspective camera.
1111
*
12-
* @author Niels Billen
13-
* @version 0.3
12+
* @author CGRG
13+
* @version 4.0.0
1414
*/
1515
public class PerspectiveCamera implements Camera {
16+
1617
/**
1718
* The origin of the camera.
1819
*/

src/film/FrameBuffer.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
/**
99
* A wrapper for a two-dimensional array of pixels.
1010
*
11-
* @author Niels Billen
12-
* @version 0.3
11+
* @author CGRG
12+
* @version 4.0.0
1313
*/
1414
public class FrameBuffer {
15+
1516
/**
1617
* Two-dimensional array of pixels. The pixels are stored in row order. When
1718
* iterating over the pixels, one should first iterate over the y

src/film/Pixel.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
/**
66
* A pixel which stores a weighted sum of spectra.
77
*
8-
* @author Niels Billen
9-
* @version 0.3
8+
* @author CGRG
9+
* @version 4.0.0
1010
*/
1111
public class Pixel {
12+
1213
/**
1314
* The sum of all the spectra.
1415
*/

src/film/RGBSpectrum.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
/**
66
* A spectrum storing a red, green and color component with radiance as unit.
77
*
8-
* @author Niels Billen
9-
* @version 0.3
8+
* @author CGRG
9+
* @version 4.0.0
1010
*/
1111
public class RGBSpectrum {
12+
1213
/**
1314
* A black spectrum.
1415
*/

src/film/Tile.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
/**
88
* A rectangular tile.
99
*
10-
* @author Niels Billen
11-
* @version 0.3
10+
* @author CGRG
11+
* @version 4.0.0
1212
*/
1313
public class Tile {
14+
1415
/**
1516
* The horizontal starting coordinate of this tile (inclusive).
1617
*/

src/gui/ControlPanel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
* A panel which allows the user to control the gamma and sensitivity of the
2424
* image shown in the image panel.
2525
*
26-
* @author Niels Billen, Matthias Moulin
27-
* @version 0.3.1
26+
* @author CGRG
27+
* @version 4.0.0
2828
*/
2929
public class ControlPanel extends JPanel {
3030

src/gui/ImagePanel.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,12 @@
3636
/**
3737
* A panel which shows the progress of the rendered image.
3838
*
39-
* @author Niels Billen
40-
* @version 0.1
39+
* @author CGRG
40+
* @version 4.0.0
4141
*/
4242
public class ImagePanel extends JPanel implements ComponentListener,
4343
MouseMotionListener, MouseListener, MouseWheelListener {
44+
4445
/**
4546
* A unique id required for serialization (required by the Serializable
4647
* interface which JPanel implements).

src/gui/ImagePanelListener.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
/**
66
* A listener which is called when the mouse has moved in the image.
77
*
8-
* @author Niels Billen
9-
* @version 0.3
8+
* @author CGRG
9+
* @version 4.0.0
1010
*/
1111
public interface ImagePanelListener {
12+
1213
/**
1314
* Called when the spectrum at the mouse position has changed.
1415
*

src/gui/Menubar.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@
1212
/**
1313
* Implementation of the menu bar of the graphical user interface.
1414
*
15-
* @author Niels Billen
16-
* @version 0.3
15+
* @author CGRG
16+
* @version 4.0.0
1717
*/
1818
public class Menubar extends JMenuBar {
19+
1920
/**
2021
* A unique id required for serialization (required by the Serializable
2122
* interface which JMenuBar implements).

0 commit comments

Comments
 (0)