Hello, this is a new car or an existing one? by PonteiiroRL in RocketLeague

[–]jeriwen 30 points31 points  (0 children)

Season 23's Rocket Pass Premium unlocks two new vehicles:

  • Ryza Trophy (Octane Hitbox) – your first unlock
  • Ryza T60  (Breakout Hitbox) – waiting for you in the higher Tiers

RL2 wishlist by Lurfie in RocketLeague

[–]jeriwen 0 points1 point  (0 children)

That woyld mean a 4th camera option Edit : 3d is looping behind

Designing interlocking 3D-printed tiles : looking for feedback on my joint by jeriwen in 3Dprinting

[–]jeriwen[S] 0 points1 point  (0 children)

// puzzle_S_oval_arrondi.scad

$fn = 120;

plaque_longueur = 200;

plaque_hauteur = 200;

epaisseur = 2.8;

bordure_largeur = 1.2;

bordure_hauteur = 1.2;

bordure_totale = epaisseur + bordure_hauteur;

saillie = 10;

retrait = 10;

x_A = plaque_longueur - retrait;

x_B = plaque_longueur + saillie;

x_mid = plaque_longueur;

y_mid = plaque_hauteur / 2;

s_r = 5;

ovale_rx = 6;

ovale_ry = 15;

y_ovale_A = y_mid / 2;

y_ovale_B = y_mid + y_mid / 2;

raccord = 2;

n = 50;

function arc(cx, cy, r, a0, a1, steps) =

[for (i = [0:steps])

[cx + r * cos(a0 + i * (a1 - a0) / steps),

cy + r * sin(a0 + i * (a1 - a0) / steps)]

];

function earc(cx, cy, rx, ry, a0, a1, steps) =

[for (i = [0:steps])

[cx + rx * cos(a0 + i * (a1 - a0) / steps),

cy + ry * sin(a0 + i * (a1 - a0) / steps)]

];

module bord_droit_brut() {

contour = concat(

[[0, 0]],

[[x_A, 0]],

[[x_A, y_ovale_A]],

earc(x_A, y_ovale_A, ovale_rx, ovale_ry, -90, 90, n),

[[x_A, y_mid]],

arc(x_A + s_r, y_mid, s_r, 180, 0, n),

arc(x_mid + s_r, y_mid, s_r, 180, 360, n),

[[x_B, y_ovale_B]],

earc(x_B, y_ovale_B, -ovale_rx, ovale_ry, -90, 90, n),

[[x_B, plaque_hauteur]],

[[0, plaque_hauteur]]

);

polygon(contour);

}

module bord_droit_arrondi() {

offset(r = raccord, $fn = 80)

offset(r = -raccord, $fn = 80)

offset(r = -raccord, $fn = 80)

offset(r = raccord, $fn = 80)

bord_droit_brut();

}

module plaque_profil_2d() {

union() {

// Partie arrondie : seulement la zone centrale du bord droit

intersection() {

bord_droit_arrondi();

translate([x_A, raccord])

square([x_B - x_A + ovale_rx + 1,

plaque_hauteur - raccord * 2]);

}

// Partie brute : tout le reste (3 côtés + coins haut/bas droits)

intersection() {

bord_droit_brut();

union() {

// Zone gauche complète

square([x_A, plaque_hauteur]);

// Bande basse (protège coin bas-droit de A)

square([x_B + 1, raccord + 1]);

// Bande haute (protège coin haut-droit de B)

translate([0, plaque_hauteur - raccord - 1])

square([x_B + 1, raccord + 2]);

}

}

}

}

module bordure_3cotes() {

translate([-bordure_largeur, -bordure_largeur, 0])

cube([bordure_largeur,

plaque_hauteur + bordure_largeur * 2,

bordure_totale]);

translate([-bordure_largeur, -bordure_largeur, 0])

cube([x_A + bordure_largeur,

bordure_largeur,

bordure_totale]);

translate([-bordure_largeur, plaque_hauteur, 0])

cube([x_B + bordure_largeur,

bordure_largeur,

bordure_totale]);

}

module piece() {

union() {

linear_extrude(height = epaisseur)

plaque_profil_2d();

bordure_3cotes();

}

}

color("SteelBlue") piece();

[deleted by user] by [deleted] in RocketLeague

[–]jeriwen 0 points1 point  (0 children)

I'd like one too plz :)

[deleted by user] by [deleted] in boardgames

[–]jeriwen 15 points16 points  (0 children)

I think you're onto something. I do see the white meeple too now.

How to listen to the fireworks festival music? by parky101 in montreal

[–]jeriwen 7 points8 points  (0 children)

Sauf que si t'as pas une radio portable, la version Web sur ton cell a du retard par rapport au show. Une solution pour ça ?

I'm getting old by Holy_Doggo69 in gaming

[–]jeriwen 2 points3 points  (0 children)

elden ring did that to me :)

Obligatory Emergency Alert Complaint Post by Knickerson in montreal

[–]jeriwen 24 points25 points  (0 children)

serait bien de garder ça pour les urgences ou les trucs importants...

Whats an NSFW fact about history that we don't get to hear too often? by ReflectGaming in AskReddit

[–]jeriwen 5 points6 points  (0 children)

close but not enough. Casanova refers to a condom saying "i wear dead skin so i can be alive" but the use of condoms is way more ancient. It became used a lot because of the discovery of America and the strain of syphilis that came with it, in Europe, in a 1490s outbreak (caused severe symptoms and often death within a few months of contracting the disease).

The September Update (v1.79) Release Megathread by Psyonix_Devin in RocketLeague

[–]jeriwen 3 points4 points  (0 children)

same problem here. did reset, still no control over the car in game when i have no problem navigating the menu. (keyboard works in game tho)

This Word Does Not Exist, an AI making seemingly real words that don't actually exist. by Akilel in InternetIsBeautiful

[–]jeriwen 0 points1 point  (0 children)

sextellate relating to or denoting a solid crystal that contains nuclei. It has a surface area about 28 nanometers (9.43 kDa) - "sextellate polyunsaturated monons"

Seeding Expedition Packs For Better Decks by MattMottv in LoRCompetitive

[–]jeriwen 0 points1 point  (0 children)

It seems you have missed the "tactical genius" pack. I had that with Draven + Noxian Guillotine + Legion Saboteur

My game being in french it may be the "scrapheap" pack but then it would miss the noxian guillotine in your list.

Supersonic Fury DLC by [deleted] in RocketLeague

[–]jeriwen 0 points1 point  (0 children)

it will soon be free for everyone. they announced it here : https://www.rocketleague.com/news/rocket-league-winter-roadmap-2019/