Discuss Scratch

MrFlash67
Scratcher
500+ posts

Processing

Discuss this semicoloned language here!

Instructed by my tech teacher, I am messing with the examples.

With examples mentioned above, I made

Last edited by MrFlash67 (Oct. 21, 2013 23:32:22)

scratchisthebest
Scratcher
1000+ posts

Processing

I, um, enjoy that color scheme

apparently Processing 2.1b1 is out, here we go again with a crazy release I bet >7 beta versions

oh oh oh made my arduino interface with it pics soon
MrFlash67
Scratcher
500+ posts

Processing

scratchisthebest wrote:

I, um, enjoy that color scheme

I was just messing around…
nathanprocks
Scratcher
1000+ posts

Processing

I like Processing. I don't use it much because I still haven't downloaded the Mac version. I don't use Windows much at home. I love the simple design, the language, and how it includes so many example programs you can learn from. I made a couple of simple 3D things with it.
scratchisthebest
Scratcher
1000+ posts

Processing

guysguysguys have you heard of PeasyCam
a 3d camera library so easy to use your cat could do it
CHECK IT OUTTT

oh and if buttons and sliders are your thing check controlP5
it's really hard but wunnerful to look at and use
MrFlash67
Scratcher
500+ posts

Processing

I made a fail Tardis from a Peasy example!

import peasy.*;
PeasyCam cam;
void setup() {
  size(1280,750,P3D);
  cam = new PeasyCam(this, 100);
  cam.setMinimumDistance(50);
  cam.setMaximumDistance(500);
  noFill();
}
void draw() {
  rotateX(-.5);
  rotateY(-.5);
  background(0);
  fill(16,35,114);
  box(30, 50, 100);
  pushMatrix();
  translate(0,0,52);
  fill(255,255,0);
  box(5);
  popMatrix();
}

Last edited by MrFlash67 (Oct. 23, 2013 20:52:31)

scratchisthebest
Scratcher
1000+ posts

Processing

is it sad that I know what that looks like without having to open processing
MrFlash67
Scratcher
500+ posts

Processing

scratchisthebest wrote:

is it sad that I know what that looks like without having to open processing
I said it….

Unless you were meaning by looking at the code.

Stop memorizing RGB values!
scratchisthebest
Scratcher
1000+ posts

Processing

Yes, by code-reading. Except the colors. But I do know that it's going to be a dark blue.

I need to lie down sorry
MrFlash67
Scratcher
500+ posts

Processing

It's not sad, it's basic code.

Powered by DjangoBB