Skip to content

Commit

Permalink
Fixed liscence headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjan Boschman committed Nov 30, 2015
1 parent c5fa5c8 commit 0e56698
Show file tree
Hide file tree
Showing 16 changed files with 110 additions and 20 deletions.
7 changes: 4 additions & 3 deletions RobotRaceGradle/src/main/java/robotrace/Lighting.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace;

Expand Down
6 changes: 6 additions & 0 deletions RobotRaceGradle/src/main/java/robotrace/Material.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace;

/**
Expand Down
12 changes: 9 additions & 3 deletions RobotRaceGradle/src/main/java/robotrace/RaceTrack.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace;

import com.jogamp.opengl.util.gl2.*;
import javax.media.opengl.*;
import javax.media.opengl.glu.*;
import com.jogamp.opengl.util.gl2.GLUT;
import javax.media.opengl.GL2;
import javax.media.opengl.glu.GLU;

/**
Implementation of a race track that is made from Bezier segments.
Expand Down
6 changes: 6 additions & 0 deletions RobotRaceGradle/src/main/java/robotrace/Robot.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace;

import com.jogamp.opengl.util.gl2.GLUT;
Expand Down
6 changes: 6 additions & 0 deletions RobotRaceGradle/src/main/java/robotrace/RobotFactory.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace;

import javax.media.opengl.GL2;
Expand Down
6 changes: 6 additions & 0 deletions RobotRaceGradle/src/main/java/robotrace/RobotRace.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace;

import javax.media.opengl.GL;
Expand Down
12 changes: 9 additions & 3 deletions RobotRaceGradle/src/main/java/robotrace/Terrain.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace;

import com.jogamp.opengl.util.gl2.*;
import javax.media.opengl.*;
import javax.media.opengl.glu.*;
import com.jogamp.opengl.util.gl2.GLUT;
import javax.media.opengl.GL2;
import javax.media.opengl.glu.GLU;

/**
Implementation of the terrain.
Expand Down
6 changes: 6 additions & 0 deletions RobotRaceGradle/src/main/java/robotrace/bender/Bender.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace.bender;

import com.jogamp.opengl.util.gl2.GLUT;
Expand Down
6 changes: 6 additions & 0 deletions RobotRaceGradle/src/main/java/robotrace/bender/Body.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace.bender;

import java.nio.DoubleBuffer;
Expand Down
6 changes: 6 additions & 0 deletions RobotRaceGradle/src/main/java/robotrace/bender/Limb.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace.bender;

import java.nio.DoubleBuffer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace.bender.bodyassembly;

import com.jogamp.common.nio.*;
import com.jogamp.common.nio.Buffers;
import java.nio.DoubleBuffer;
import java.nio.IntBuffer;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;

import static java.lang.Math.PI;
import static java.lang.Math.atan;
import static java.lang.Math.cos;
import static java.lang.Math.sin;
import static java.lang.Math.toRadians;

import java.nio.*;
import java.util.*;

import static robotrace.bender.bodyassembly.Vertex.COORD_COUNT;
import static robotrace.bender.bodyassembly.Vertex.IND_X;
import static robotrace.bender.bodyassembly.Vertex.IND_Y;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace.bender.bodyassembly;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace.bender.bodyassembly;

import java.util.*;
import java.util.ArrayList;
import java.util.List;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace.bender.bodyassembly;

import java.util.*;
import java.util.ArrayList;
import java.util.List;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package robotrace.bender.bodyassembly;

/**
Expand Down
9 changes: 5 additions & 4 deletions RobotRaceGradle/src/main/java/utility/GsUtils.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
* Course: Computer Graphics
* Course Code: 2IV60
* Assignment: RobotRace
* Students: Arjan Boschman & Robke Geenen
*/
package utility;

import robotrace.*;
import robotrace.GlobalState;

/**
Static utility class. Contains some utility methods that aid in using the
Expand Down

0 comments on commit 0e56698

Please sign in to comment.