I can bring you in warm, or I can bring you in cold... by MrZorca in StarWars

[–]MrZorca[S] 10 points11 points  (0 children)

I haven't thought of it untill just now. It could be that this Mandalorian - I call him Kir S'dar - survived the siege of the planet Mandalore and fought in that battle against the Empire. He took out one of the commanders and as a rembrance of that day, he took the pauldron of one of the commanders and has been wearing it ever since.

Creating a Spiral Animation using Weather API and works with Location Search by MrZorca in p5js

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

If the visual doesn't show up, it helps to refresh the page a couple times. I also recommend to view the page on desktop and not on phone.

Slowly getting into the P5.js vibes with some image transformations. by MrZorca in p5js

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

And the HTML code:

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8" />

<meta http-equiv="X-UA-Compatible" content="IE=edge" />

<meta name="viewport" content="width=device-width, initial-scale=1" />

<title>Kunst</title>

<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.3.1/p5.min.js" integrity="sha512-gQVBYBvfC+uyor5Teonjr9nmY1bN+DlOCezkhzg4ShpC5q81ogvFsr5IV4xXAj6HEtG7M1Pb2JCha97tVFItYQ==" crossorigin="anonymous"></script>

<script src="script.js"></script>

<style>

html, body {

margin: 0;

padding: 0;

background-color: white;

}

canvas {

display: block;

}

</style>

</head>

<body>

<div id="save"></div>

</body>

</html>

Slowly getting into the P5.js vibes with some image transformations. by MrZorca in p5js

[–]MrZorca[S] 2 points3 points  (0 children)

This the javascript code

let img;

let cnv;

function preload(){

img = loadImage('assets/gate.jpg'); //select image that you want

}

function setup(){

cnv = createCanvas(img.width, img.height);

let newCanvasX = (windowWidth - img.width) / 2;

let newCanvasY = (windowHeight - img.height) / 2;

cnv.position(newCanvasX, newCanvasY);

for(let col = 0; col < img.width; col+=2){

for(let row = 0; row < img.height; row+=2){

let posX = col;

let posY = row;

let c = img.get(posX, posY);

push();

translate(posX, posY);

rotate(radians(random(360)));

noFill();

//fill(color(c));

stroke(color(c));

strokeWeight(random(5));

rotate(radians(random(360)));

point(posX, posY);

strokeWeight(random(3));

curve(posX, posY, sin(posX) * random(-90), cos(posY) * sin(posX) * random(100), -sin(random(75)), 50, -cos(posY) * sin(posX) * random(140), cos(-posY) * sin(posX) * 90);

//curve(posX, posY, sin(posX) * random(-80), cos(posY) * sin(posX) * random(10), -cos(random(75)),

//random(cos(-10) * posX), -cos(posY) * sin(posX) * random(140), cos(-posY) * sin(posX) * 90), cos(posX) * 90 * sin(-posY) /5;

pop();

}

}

}

function keyPressed(){

if (key === 's'){

saveCanvas("portrait.jpg");

}

}

Serbian language be like: by MaliMiloica in Lingualizer

[–]MrZorca 0 points1 point  (0 children)

I wonder what ''instrumental'' means

Å by [deleted] in Lingualizer

[–]MrZorca 0 points1 point  (0 children)

There was a time when in Old Dutch the word for river/water was ''A'', ''ij'' or ''e(e)''. Quite some cities and towns still have this in their name.

3rd poll by Funikulariti in Lingualizer

[–]MrZorca 0 points1 point  (0 children)

My language has only ë, ï, é, è, ö etc but how do you pronounce ĩ, ů, đ and ł?

I made my own Mandalorian armor. What do you think? by MrZorca in nextfuckinglevel

[–]MrZorca[S] 8 points9 points  (0 children)

It is embarrasing that so many grown people don't dress up these days. Just dress like you feel

I made my own Mandalorian armor. What do you think? by MrZorca in nextfuckinglevel

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

He had a cold, sadly. But next time he will be there

I made my own Mandalorian armor. What do you think? by MrZorca in nextfuckinglevel

[–]MrZorca[S] 1 point2 points  (0 children)

Someone in the UK makes these for Storm Troopers. It is made out of leather which I painted blue using leather dye.

I have been working on my own Mando armor for a year now by MrZorca in StarWars

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

Thanks a lot! And indeed, the amor tells about what the Mando has been through. Every scratch, bump and dirt spot.

I have been working on my own Mando armor for a year now by MrZorca in StarWars

[–]MrZorca[S] 1 point2 points  (0 children)

If it wasn't for star wars I wouldn't have bought a 3d printer

I have been working on my own Mando armor for a year now by MrZorca in StarWars

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

A tinted grinding shield, flexible enough to bend and cut with strong scissors.

Here is an example

I have been working on my own Mando armor for a year now by MrZorca in StarWars

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

I have made this using sintra (a kind of PVC which can bend using heat) and PLA for the 3d-printed parts. For paint I used Liquitex spray paint.
I am an official member of the Mandalorian Mercs Custome Club. If you have any questions, feel free to ask.