9.20: Polar Coordinates - p5.js Tutorial

Поділитися
Вставка
  • Опубліковано 23 гру 2024

КОМЕНТАРІ •

  • @brenopontes3041
    @brenopontes3041 7 років тому +37

    "It's a happy point" I just noticed you are the Bob Ross of coding hahahahaha

    • @Xeronimo74
      @Xeronimo74 7 років тому +1

      he definitely is :D

    • @paulagostinelli
      @paulagostinelli 7 років тому +1

      This is the top comment on so many of his videos, but this time, he said the thing!

    • @brenopontes3041
      @brenopontes3041 7 років тому

      lol never noticed it

  • @netoskin
    @netoskin 7 років тому +5

    I just love the maths behind the computer graphics, especially trigonometry. love code, love maths

  • @ShranjaniShukla
    @ShranjaniShukla 5 років тому +3

    being in 9th grade, I know this video is gonna help me in the near future!
    THANKS DAN

  • @jovdsss
    @jovdsss 7 років тому +5

    this is purely math, It's amazing

  • @matthewroberson4926
    @matthewroberson4926 7 років тому +1

    Love the video. Could have used it literally two days ago on a project but managed to figured it out lol

  • @Robber7
    @Robber7 7 років тому +1

    Also, can you cover framerate independendence with p5/processing? (makes animations or updates appear to work at same speed independently of 60 or 30 fps or whatever)

  • @FuckJimmyESP
    @FuckJimmyESP 7 років тому +7

    I really like what you do. Please, can you make some videos talking about neural networks and doing simple examples?
    Thank you.

  • @fredyrivas
    @fredyrivas 7 років тому

    Hi Daniel, you have a wonderful channel!! Are you planning to make an Angular or Ember video? that would be so great. Thanks for everything you share man. :)

  • @Pixoshiru
    @Pixoshiru 7 років тому

    Sidenote : Great T-shirt!

  • @uushk6631
    @uushk6631 2 роки тому

    It's a happy point :D

  • @ryansaul6119
    @ryansaul6119 7 років тому

    Help? - so if I had two x and y points on a screen, what math could I use to get the angle that one is from the other?

  • @leodavee7392
    @leodavee7392 7 років тому

    Very great video! Keep up the good work!

  • @Robber7
    @Robber7 7 років тому

    Hey man, I've seen almost all of your videos and I'm loving processing and p5. I was thinking how you would do networking on Processing like with node.js with p5.js? I want to make an android game with processing, but don't know how to deal with networking and server without node.js. Can you do a video about it?

  • @AvrilSk8erboi27
    @AvrilSk8erboi27 7 років тому +2

    please make coding challenge feeding frenzy!

  • @LawZist
    @LawZist 7 років тому

    i love you man

  • @roadmap1234
    @roadmap1234 7 років тому +1

    i can't seen to download the p5.js app can you help me out with that

    • @ladice___3218
      @ladice___3218 7 років тому

      I'm also having trouble.
      it seems they no longer host the p5 editor on the site. I am just using processing, which supports p5 through means of searching for p5 in the upper right corner.

    • @Roundtablist
      @Roundtablist 7 років тому +4

      As Ladice said, the p5 editor is no longer supported. In this video Daniel is using CodePen but the most common IDE he uses is called Atom which is available at the link below.atom.io/

  • @MikeMcRoberts
    @MikeMcRoberts 7 років тому

    Please do a star chart - converting RA & DEC co-ordinates to screen co-ordinates.

  • @m4n14
    @m4n14 7 років тому

    point.happy = true;
    I love your videos!! :)

  • @adilkhatri7475
    @adilkhatri7475 7 років тому

    ok,i beginner in java script can any one tell me what parameters are passed in map function?

    • @redhen
      @redhen 7 років тому

      Adil Khatri First parameter is the variable you are mapping a range from; next two are the min and max of the first variable; final two parameters are the range you want returned, having been mapped to previous range.

  • @funguslars
    @funguslars 5 років тому +2

    Thanks for teaching me cos and sin, now i can brag about my intelligence to my friends! 😂😂

  • @TozzaYT
    @TozzaYT Рік тому

    call that angle angle!!?!?? what happened to α or θ. :(((

  • @sadhlife
    @sadhlife 7 років тому

    Do some people who wish to do programming really not know how to cross multiply equations?

  • @MAProsper
    @MAProsper 7 років тому

    I was 2 full minutes cleaning my screen, just to realise it was something in the whiteboard...

  • @error.418
    @error.418 5 років тому

    codesandbox > codepen

  • @ArnoldsKtm
    @ArnoldsKtm 7 років тому

    Hardest part is applying "real life functions" to code, that's for sure.

  • @Chricco72
    @Chricco72 7 років тому

    #include
    int main(){
    cout > answer;
    if (answer == "yes"){
    cout > "username";
    }
    return 0;
    }

  • @trolledwoods377
    @trolledwoods377 7 років тому

    Fifth! Or fourth? Or third?

  • @Quetzalcoatl0
    @Quetzalcoatl0 7 років тому

    How can 225 000+ subs and only 6.7k videos =/

  • @superfortnyc
    @superfortnyc 5 років тому

    Kewl, I lernt how to make a hexagon in P5.
    let NUM = 6;
    let DEG = 60;
    let r = 100;
    beginShape();
    for (let i = 0; i < NUM; i++) {
    let y = sin(DEG*i)* (r)
    let x = cos(DEG*i)* (r)
    vertex(x, y);
    }
    endShape(CLOSE);

  • @ariseyhun2085
    @ariseyhun2085 7 років тому

    FIRST ~ Hello Dan

  • @maxer1375
    @maxer1375 7 років тому +1

    great video thanks for explaining, i can use this to recreate one of my old games i made in scratch in js: scratch.mit.edu/projects/132412680/

  • @martindinev2647
    @martindinev2647 7 років тому +1

    READ THIS : hey, I left you a comment on coding challenge 49, please check it out because the code can be made so that it can load all 3000 photos( and even more ) no problem

  • @GonperMe
    @GonperMe 7 років тому

    First :)

    • @GonperMe
      @GonperMe 7 років тому

      O no, second :( 😂😂