Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nbourre committed Sep 8, 2023
2 parents c9e7395 + 265fbfd commit 8050b8f
Show file tree
Hide file tree
Showing 492 changed files with 518 additions and 20 deletions.
42 changes: 42 additions & 0 deletions arkanoid/Ball.pde
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
class Ball extends GraphicObject {

int radius = 10;


Ball (int _x, int _y) {
location = new PVector(_x, _y);

}


void update(int delta) {

}

void display()
{
pushMatrix();
translate(location.x, location.y);
fill(fillColor);
ellipse(0, 0, radius, radius);
popMatrix();
}

float top() {
return location.y - radius;
}

float bottom() {
return location.y + radius;
}

float left() {
return location.x - radius;
}

float right() {
return location.x + radius;
}


}
32 changes: 32 additions & 0 deletions arkanoid/Block.pde
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
class Block extends Rectangle {
int w = 50;
int h = 10;
ICollidable collidable;

Block() {
location = new PVector(width / 2, height / 2);
fillColor = color(0, 200, 0);

}

void addCollidable(ICollidable other) {
collidable = other;
}



void update (int deltaTime) {

}


void display () {
pushMatrix();
translate(location.x, location.y);
fill(fillColor);
rect(0, 0, w, h);
popMatrix();
}


}
Empty file added arkanoid/BrickWall.pde
Empty file.
59 changes: 59 additions & 0 deletions arkanoid/Destroyer.pde
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
class Destroyer extends Ball implements ICollidable {
float vitesse = 5.0;
ArrayList<ICollidable> collidables;

Destroyer (int _x, int _y) {
super(_x, _y);
initValues();
}

void initValues() {
collidables = new ArrayList<ICollidable>();
velocity = new PVector();
velocity.x = round(random(0, 1)) == 1? 1 : -1;
velocity.y = -1;
velocity.normalize();
velocity.mult(vitesse);
}

void update(int delta) {
checkEdges();

for (ICollidable other : collidables) {
if (hasCollision(other)) {

}
}

location.add(velocity);

super.update(delta);
}

void checkEdges() {
if (right() > width || left() < 0) {
velocity.x *= -1;
}

if (top() < 0 || bottom() > height) {
velocity.y *= -1;
}
}

boolean hasCollision(ICollidable other) {
if (other == null) return false;

return other.bottom() > top() && other.top() < bottom()
&& other.left() < right() && other.right() > left();
}

void setCollision(boolean xColl, boolean yColl) {
if (xColl) {
velocity.x *= -1;
}

if (yColl) {
velocity.y *= -1;
}
}
}
14 changes: 14 additions & 0 deletions arkanoid/GraphicObject.pde
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
abstract class GraphicObject {
public PVector location;
public PVector velocity;
public PVector acceleration;

color fillColor = color (255);
color strokeColor = color (255);
float strokeWeight = 1;

abstract void update(int deltaTime);

abstract void display();

}
7 changes: 7 additions & 0 deletions arkanoid/ICollidable.pde
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
interface ICollidable {
boolean hasCollision(ICollidable other);
float top();
float bottom();
float left();
float right();
}
Empty file added arkanoid/Paddle.pde
Empty file.
96 changes: 96 additions & 0 deletions arkanoid/Rectangle.pde
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
class Rectangle extends GraphicObject {
int w, h;

Rectangle () {
instanciate();
}

Rectangle (float x, float y, int _w, int _h) {
instanciate();

location.x = x;
location.y = y;
w = _w;
h = _h;
}

void instanciate() {
location = new PVector();
velocity = new PVector();
acceleration = new PVector();

w = 100;
h = 50;
}

void update(int deltaTime) {
checkEdges();

velocity.add (acceleration);
location.add (velocity);

acceleration.mult(0);
}

void display() {
pushMatrix();
translate (location.x, location.y);
rect (0, 0, w, h);
popMatrix();
}

// Fonction facilitant la compréhension des conditions
public int top() { return (int)location.y; }
public int bottom() { return (int)location.y + h; }
public int left() { return (int)location.x; }
public int right() { return (int)location.x + w; }

void checkEdges() {
if (left() < 0 || right() > width) {
velocity.x *= -1;
}

if (top() < 0 || bottom() > height) {
velocity.y *= -1;
}
}

public void checkCollisions(Rectangle other) {
if (isBouncingX(other)) {
velocity.x *= -1;
}

if (isBouncingY(other)) {
velocity.y *= -1;
}
}

// Retourne vrai s'il y a un contact en X
public boolean isBouncingX(Rectangle other) {
// Si je continue en X est-ce que je vais
// avoir une collision avec l'autre
boolean passLeft = right() + velocity.x > other.left();
boolean passRight = left() + velocity.x < other.right();

boolean checkTop = bottom() > other.top();
boolean checkBottom = top() < other.bottom();

return passLeft && passRight && checkBottom && checkTop;
}

// Retourne vrai s'il y a un contact en Y
public boolean isBouncingY(Rectangle other) {

boolean checkRight = right() > other.left();
boolean checkLeft = left() < other.right();

// Si je continue en Y est-ce que je vais
// avoir une collision avec l'autre
boolean passBottom = bottom() + velocity.y > other.top();
boolean passTop = top() + velocity.y < other.bottom();

return checkRight && checkLeft && passBottom && passTop;
}


}
66 changes: 66 additions & 0 deletions arkanoid/arkanoid.pde
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
int currentTime;
int previousTime;
int deltaTime;

boolean saveVideo = false;

Destroyer b;
Block blk;

void setup () {
size (800, 600);
currentTime = millis();
previousTime = millis();
b = new Destroyer(width / 2, height / 2);
blk = new Block();
blk.addCollidable(b);
}

void draw () {
currentTime = millis();
deltaTime = currentTime - previousTime;
previousTime = currentTime;


update(deltaTime);
display();

savingFrames(5, deltaTime);
}

/***
The calculations should go here
*/
void update(int delta) {
blk.update(delta);
b.update(delta);
}

/***
The rendering should go here
*/
void display () {
background(0);
blk.display();
b.display();
}

//Saving frames for video
//Put saveVideo to true;
int savingAcc = 0;
int nbFrames = 0;

void savingFrames(int forMS, int deltaTime) {

if (!saveVideo) return;

savingAcc += deltaTime;

if (savingAcc < forMS) {
saveFrame("frames/####.tiff");
nbFrames++;
} else {
println("Saving frames done! " + nbFrames + " saved");
saveVideo = false;
}
}
50 changes: 50 additions & 0 deletions arkanoid/shapeTemplate.pde
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Rename ShapeTemplate to whatever needed
class ShapeTemplate extends GraphicObject {


ShapeTemplate () {
instanciate();
}

ShapeTemplate (float x, float y) {
instanciate();
location.x = x;
location.y = y;

}



void instanciate() {
location = new PVector();
velocity = new PVector();
acceleration = new PVector();

}




void update(int deltaTime) {
velocity.add(acceleration);
location.add (velocity);

acceleration.mult(0);
}

void display() {
pushMatrix();
translate(location.x, location.y);

// Code diplay stuff here

fill(fillColor);



popMatrix();

}


}
Binary file modified s01c_perlin_terrain/temp.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed s04_syst_solaire/frames/0001.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0002.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0003.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0004.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0005.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0006.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0007.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0008.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0009.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0010.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0011.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0012.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0013.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0014.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0015.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0016.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0017.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0018.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0019.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0020.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0021.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0022.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0023.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0024.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0025.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0026.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0027.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0028.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0029.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0030.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0031.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0032.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0033.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0034.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0035.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0036.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0037.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0038.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0039.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0040.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0041.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0042.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0043.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0044.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0045.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0046.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0047.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0048.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0049.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0050.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0051.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0052.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0053.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0054.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0055.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0056.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0057.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0058.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0059.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0060.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0061.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0062.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0063.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0064.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0065.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0066.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0067.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0068.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0069.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0070.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0071.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0072.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0073.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0074.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0075.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0076.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0077.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0078.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0079.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0080.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0081.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0082.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0083.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0084.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0085.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0086.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0087.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0088.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0089.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0090.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0091.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0092.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0093.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0094.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0095.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0096.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0097.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0098.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0099.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0100.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0101.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0102.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0103.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0104.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0105.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0106.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0107.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0108.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0109.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0110.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0111.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0112.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0113.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0114.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0115.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0116.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0117.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0118.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0119.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0120.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0121.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0122.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0123.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0124.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0125.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0126.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0127.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0128.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0129.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0130.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0131.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0132.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0133.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0134.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0135.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0136.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0137.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0138.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0139.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0140.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0141.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0142.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0143.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0144.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0145.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0146.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0147.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0148.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0149.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0150.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0151.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0152.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0153.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0154.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0155.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0156.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0157.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0158.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0159.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0160.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0161.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0162.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0163.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0164.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0165.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0166.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0167.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0168.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0169.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0170.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0171.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0172.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0173.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0174.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0175.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0176.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0177.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0178.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0179.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0180.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0181.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0182.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0183.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0184.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0185.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0186.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0187.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0188.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0189.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0190.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0191.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0192.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0193.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0194.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0195.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0196.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0197.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0198.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0199.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0200.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0201.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0202.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0203.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0204.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0205.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0206.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0207.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0208.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0209.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0210.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0211.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0212.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0213.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0214.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0215.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0216.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0217.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0218.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0219.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0220.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0221.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0222.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0223.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0224.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0225.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0226.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0227.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0228.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0229.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0230.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0231.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0232.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0233.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0234.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0235.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0236.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0237.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0238.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0239.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0240.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0241.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0242.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0243.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0244.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0245.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0246.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0247.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0248.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0249.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0250.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0251.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0252.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0253.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0254.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0255.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0256.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0257.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0258.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0259.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0260.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0261.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0262.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0263.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0264.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0265.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0266.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0267.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0268.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0269.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0270.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0271.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0272.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0273.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0274.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0275.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0276.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0277.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0278.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0279.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0280.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0281.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0282.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0283.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0284.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0285.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0286.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0287.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0288.tiff
Binary file not shown.
Binary file removed s04_syst_solaire/frames/0289.tiff
Binary file not shown.
Loading

0 comments on commit 8050b8f

Please sign in to comment.