zoukankan      html  css  js  c++  java
  • xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

    p5.js

    p5.j​​s是一个用于创意编码的JavaScript库,其重点是使艺术家,设计师,教育者,初学者以及其他任何人都可以访问并包含所有编码!

    https://p5js.org/

    https://editor.p5js.org/

    function setup() {
      createCanvas(400, 400);
    }
    
    function draw() {
      background(220);
      ellipse(50,50,80,80);
    }
    
    

    examples

    https://p5js.org/examples/structure-coordinates.html

    https://p5js.org/examples/3d-geometries.html

    function setup() {
      createCanvas(710, 400, WEBGL);
    }
    
    function draw() {
      background(250);
    
      translate(-240, -100, 0);
      normalMaterial();
      push();
      rotateZ(frameCount * 0.01);
      rotateX(frameCount * 0.01);
      rotateY(frameCount * 0.01);
      plane(70);
      pop();
    
      translate(240, 0, 0);
      push();
      rotateZ(frameCount * 0.01);
      rotateX(frameCount * 0.01);
      rotateY(frameCount * 0.01);
      box(70, 70, 70);
      pop();
    
      translate(240, 0, 0);
      push();
      rotateZ(frameCount * 0.01);
      rotateX(frameCount * 0.01);
      rotateY(frameCount * 0.01);
      cylinder(70, 70);
      pop();
    
      translate(-240 * 2, 200, 0);
      push();
      rotateZ(frameCount * 0.01);
      rotateX(frameCount * 0.01);
      rotateY(frameCount * 0.01);
      cone(70, 70);
      pop();
    
      translate(240, 0, 0);
      push();
      rotateZ(frameCount * 0.01);
      rotateX(frameCount * 0.01);
      rotateY(frameCount * 0.01);
      torus(70, 20);
      pop();
    
      translate(240, 0, 0);
      push();
      rotateZ(frameCount * 0.01);
      rotateX(frameCount * 0.01);
      rotateY(frameCount * 0.01);
      sphere(70);
      pop();
    }
    
    

    Flag Counter

    ©xgqfrms 2012-2020

    www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


  • 相关阅读:
    第二次安卓作业
    第十一次作业
    第十一次上机练习
    第十次作业
    第十次上机练习
    第九次作业
    第九次上机练习
    添加用户 Android 6
    Android 5
    activity带数据跳转
  • 原文地址:https://www.cnblogs.com/xgqfrms/p/13211191.html
Copyright © 2011-2022 走看看