Processing编程艺术 Processing编程艺术爱好者殿堂
网站导航
  • 首页
  • 文档
  • 软件下载
  • 书籍
  • 教程
  • 项目
  • Sketch
  • 联系我们
  • 书籍
2017
08-08

clear()清空

卡萨布兰卡 文档 围观1502次 留下评论
Nameclear()清空  ExamplesPGraphics pg;  void setup() { size(200, 200); pg = createGraphics(100, 100); }  void draw() { background(204); pg.beginDraw(); pg.stroke(0, 102, 153); pg.line(0, 0.... Read More >
2017
08-08

background()背景

卡萨布兰卡 文档 围观2062次 留下评论
background()背景 Namebackground()背景  Examples background(51); background(255, 204, 0); PImage img; img = loadImage("laDefense.jpg"); background(.... Read More >
2017
08-07

specular()镜面

卡萨布兰卡 文档 围观550次 留下评论
specular()镜面 Namespecular()镜面  Examples size(100, 100, P3D); background(0); noStroke(); background(0); fill(0, 51, 102); lightSpecular(255, 255, 255); direc.... Read More >
2017
08-07

shininess()光泽度

卡萨布兰卡 文档 围观343次 留下评论
shininess()光泽度 Nameshininess()光泽度  Examples size(100, 100, P3D); background(0); noStroke(); background(0); fill(0, 51, 102); ambientLight(102, 102, 102); l.... Read More >
2017
08-07

emissive()发射率

卡萨布兰卡 文档 围观320次 留下评论
emissive()发射率 Nameemissive()发射率  Examples size(100, 100, P3D); background(0); noStroke(); background(0); directionalLight(204, 204, 204, .5, 0, -1); emissive.... Read More >
2017
08-07

ambient()环境反射率

卡萨布兰卡 文档 围观374次 留下评论
ambient()环境反射率 Nameambient()环境反射率  Examples size(100, 100, P3D); background(0); noStroke(); directionalLight(153, 153, 153, .5, 0, -1); ambientLight(153, 102,.... Read More >
2017
08-07

screenZ()屏幕Z坐标

卡萨布兰卡 文档 围观221次 留下评论
NamescreenZ()屏幕Z坐标  Examplesvoid setup() { size(100, 100, P3D); }  void draw() { background(204);   float x = mouseX; float y = mouseY; float z = -100;   // Draw "X" at z = -100 str.... Read More >
2017
08-07

screenY()屏幕Y坐标

卡萨布兰卡 文档 围观182次 留下评论
NamescreenY()屏幕Y坐标  Examplesvoid setup() { size(100, 100, P3D); }  void draw() { background(204);   float x = mouseX; float y = mouseY; float z = -100;   // Draw "X" at z = -100 str.... Read More >
2017
08-07

screenX()屏幕X坐标

卡萨布兰卡 文档 围观307次 留下评论
NamescreenX()屏幕X坐标  Examplesvoid setup() { size(100, 100, P3D); }  void draw() { background(204);   float x = mouseX; float y = mouseY; float z = -100;   // Draw "X" at z = -100 str.... Read More >
2017
08-07

modelZ()模型Z坐标

卡萨布兰卡 文档 围观328次 留下评论
NamemodelZ()模型Z坐标  Examplesvoid setup() { size(500, 500, P3D); noFill(); }  void draw() { background(0);   pushMatrix(); // start at the middle of the screen translate(width/2, height/2,.... Read More >
2017
08-07

modelY()模型Y坐标

卡萨布兰卡 文档 围观395次 留下评论
NamemodelY()模型Y坐标  Examplesvoid setup() { size(500, 500, P3D); noFill(); }  void draw() { background(0);   pushMatrix(); // start at the middle of the screen translate(width/2, height/2,.... Read More >
2017
08-07

modelX()模型X坐标

卡萨布兰卡 文档 围观488次 留下评论
NamemodelX()模型X坐标  Examplesvoid setup() { size(500, 500, P3D); noFill(); }  void draw() { background(0);   pushMatrix(); // start at the middle of the screen translate(width/2, height/2,.... Read More >
2017
08-07

printProjection()打印投影矩阵

卡萨布兰卡 文档 围观330次 留下评论
NameprintProjection()打印投影矩阵  Examplessize(100, 100, P3D); printProjection();  // The program above prints this data: // 01.7321 00.0000 00.0000 00.0000 // 00.0000 -01.7321 00.0000 00.0000 // 00..... Read More >
2017
08-07

printCamera()打印相机矩阵

卡萨布兰卡 文档 围观254次 留下评论
NameprintCamera()打印相机矩阵  Examplessize(100, 100, P3D); printCamera();  // The program above prints this data: // 01.0000 00.0000 00.0000 -50.0000 // 00.0000 01.0000 00.0000 -50.0000 // 00.0000 00.... Read More >
2017
08-07

perspective()角度

卡萨布兰卡 文档 围观524次 留下评论
perspective()角度 Nameperspective()角度  Examples // Re-creates the default perspective size(100, 100, P3D); noFill(); float fov = PI/3.0; float cameraZ = (height/.... Read More >
2017
08-07

ortho()邻

卡萨布兰卡 文档 围观377次 留下评论
ortho()邻 Nameortho()邻  Examples size(100, 100, P3D); noFill(); ortho(-width/2, width/2, -height/2, height/2); // Same as ortho() translate(width/2, heig.... Read More >
2017
08-07

frustum()截锥

卡萨布兰卡 文档 围观335次 留下评论
frustum()截锥 Namefrustum()截锥  Examples size(100, 100, P3D); noFill(); background(204); frustum(-10, 0, 0, 10, 10, 200); rotateY(PI/6); box(45);Description.... Read More >
2017
08-06

第三期boss学习及分析

fishVD 未分类 围观610次 一条评论
首先,也是来为虎牙大大的代码加上注释。 FlowField flow; ArrayList<Vehicle> vlist; PVector center; //中心点 void setup() { size(1200, 600); flow = new FlowField(); vlist = new ArrayList<Vehicle.... Read More >
« 上一页12345678910下一页 »
  • 注册 记住我的登录信息

  • processing

    • 文章总数:469篇
    • 分类总数:5个
    • 标签总数:7个
    • 评论总数:235条
    • 页面总数:11个
    • 网站已运行:1813天
  • 分类目录

    • Sktech
    • 书籍
    • 教程
    • 文档
    • 未分类
  • 读者墙

    • 近期评论

      • DEM 3月之前说:

        很有意思,想学习一下。

      • 卡萨布兰卡 11月之前说:

      • 卡萨布兰卡 1年之前说:

      • 卡萨布兰卡 1年之前说:

      • danny 1年之前说:

    • 随机文章

      • PShape类
      • saveJSONObject()保存JSON对象
      • beginShape()开始绘制图形
      • 有树莓派的独立页面了!
      • lights()设置默认光源参数
      • 第四期 Processing分形之一——Wallpaper
      • red()红色值
      • 习作CB_简单求对角线交点应用直角三角形范围判定
      • 屏幕打印之printArray()函数
      • loadShape()加载形状
    • 功能

      • 注册
      • 登录
      • 文章RSS
      • 评论RSS
      • WordPress.org
    • 文章归档

      • 2022年5月
      • 2020年9月
      • 2019年3月
      • 2018年10月
      • 2018年9月
      • 2018年7月
      • 2018年6月
      • 2018年5月
      • 2018年4月
      • 2018年3月
      • 2018年1月
      • 2017年12月
      • 2017年11月
      • 2017年10月
      • 2017年9月
      • 2017年8月
      • 2017年7月
      • 2017年6月
    • 2022年5月
      一 二 三 四 五 六 日
      « 9月    
       1
      2345678
      9101112131415
      16171819202122
      23242526272829
      3031  
    • 标签

      文档 (18) structure结构 (17) 教程 (6) 基础教程 (5) 展示 (1) 库 (1) 粒子 (1)
    • 近期文章

      • Arduino IDE下合宙ESP32C3使用方法
      • 带存储和重置功能的 WiFiConFig
      • esp32核心库的分享
      • 小清新画风的船
      • 测试2
    • 友情链接

      • Arduino入门与进阶
      • 一切伟大的事情都从编程和绘画开始
      • 专筑网
      • 骑驴玩漂移
    返回顶部   苏ICP备15051279号-2 © | Theme frontopen2