zoukankan      html  css  js  c++  java
  • 0 ardunio processing 显示三轴数据

    http://blog.csdn.net/Fortware/article/details/38307799

    /**
     * Mixture
     * by Simon Greenwold. 
     * 
     * Display a box with three different kinds of lights. 
     */
    
    void setup() {
      size(640, 360, P3D);
      noStroke();
    }
    
    void draw() {
      background(0);
      translate(width / 2, height / 2);
      
      // Orange point light on the right
      pointLight(150, 100, 0, // Color
                 200, -150, 0); // Position
    
      // Blue directional light from the left
      directionalLight(0, 102, 255, // Color
                       1, 0, 0); // The x-, y-, z-axis direction
    
      // Yellow spotlight from the front
      spotLight(255, 255, 109, // Color
                0, 40, 200, // Position
                0, -0.5, -0.5, // Direction
                PI / 2, 2); // Angle, concentration
      
      rotateY(map(mouseX, 0, width, 0, PI));
      rotateX(map(mouseY, 0, height, 0, PI));
      box(150);
    }
    

      

  • 相关阅读:
    java开发环境
    堆栈方法区的创建
    Jmeter- 笔记8
    Jmeter- 笔记7
    Jmeter- 笔记6
    Jmeter- 笔记5
    Jmeter- 笔记4
    Jmeter- 笔记3
    Jmeter- 笔记2
    Jmeter- 笔记1
  • 原文地址:https://www.cnblogs.com/kekeoutlook/p/7589429.html
Copyright © 2011-2022 走看看