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

shininess()光泽度

卡萨布兰卡 文档 围观300次 留下评论
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()发射率

卡萨布兰卡 文档 围观269次 留下评论
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()环境反射率

卡萨布兰卡 文档 围观304次 留下评论
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坐标

卡萨布兰卡 文档 围观197次 留下评论
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坐标

卡萨布兰卡 文档 围观149次 留下评论
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坐标

卡萨布兰卡 文档 围观224次 留下评论
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坐标

卡萨布兰卡 文档 围观311次 留下评论
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坐标

卡萨布兰卡 文档 围观340次 留下评论
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坐标

卡萨布兰卡 文档 围观427次 留下评论
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()打印投影矩阵

卡萨布兰卡 文档 围观293次 留下评论
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()打印相机矩阵

卡萨布兰卡 文档 围观218次 留下评论
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()角度

卡萨布兰卡 文档 围观470次 留下评论
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()邻

卡萨布兰卡 文档 围观308次 留下评论
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()截锥

卡萨布兰卡 文档 围观282次 留下评论
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 未分类 围观516次 一条评论
首先,也是来为虎牙大大的代码加上注释。 FlowField flow; ArrayList<Vehicle> vlist; PVector center; //中心点 void setup() { size(1200, 600); flow = new FlowField(); vlist = new ArrayList<Vehicle.... Read More >
2017
08-05

endCamera()关闭相机

卡萨布兰卡 文档 围观185次 留下评论
endCamera()关闭相机 NameendCamera()关闭相机  Examples size(100, 100, P3D); noFill();  beginCamera(); camera(); rotateX(-PI/6); endCamera();  translate(50, 50, 0); ro.... Read More >
2017
08-05

camera()设置相机位置

卡萨布兰卡 文档 围观711次 留下评论
camera()设置相机位置 Namecamera()设置相机位置  Examples size(100, 100, P3D); noFill(); background(204); camera(70.0, 35.0, 120.0, 50.0, 50.0, 0.0, 0.0, 1.0, 0.0);.... Read More >
2017
08-05

beginCamera()开始相机

卡萨布兰卡 文档 围观604次 留下评论
beginCamera()开始相机 NamebeginCamera()开始相机  Examples size(100, 100, P3D); noFill();  beginCamera(); camera(); rotateX(-PI/6); endCamera();  translate(50, 50, 0); .... Read More >
« 上一页12345678910下一页 »
  • 注册 记住我的登录信息

  • processing

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

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

    • 近期评论

      • 卡萨布兰卡

        卡萨布兰卡 6月之前说:

        真的很难

      • menber 7月之前说:

        把中文的单引号和双引号换成英文的,然后有几处改成--

      • 肖志喜 8月之前说:

        我想学习这个编程艺术

      • 小鱼 9月之前说:

        小白求详解

      • 灰灰 10月之前说:

        请问qq群如何添加

    • 随机文章

      • redraw()重绘
      • 模拟工控机的模拟(3):工控机的模拟
      • HAIF_PI (π/2)
      • curve()曲线
      • loadShape()加载形状
      • keyPressed键盘按键动作
      • floor() 去位取整
      • max() 最大值
      • mouseX鼠标的当前水平坐标
      • 习作AE_雨刮器效果
    • 功能

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

      • 2020年九月
      • 2019年三月
      • 2018年十月
      • 2018年九月
      • 2018年七月
      • 2018年六月
      • 2018年五月
      • 2018年四月
      • 2018年三月
      • 2018年一月
      • 2017年十二月
      • 2017年十一月
      • 2017年十月
      • 2017年九月
      • 2017年八月
      • 2017年七月
      • 2017年六月
    • 2021年二月
      一 二 三 四 五 六 日
      « 9月    
      1234567
      891011121314
      15161718192021
      22232425262728
    • 标签

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

      • 小清新画风的船
      • 测试2
      • 测试1
      • 在openprcessing上收集了一波源代码,分享一下
      • 习作DC_四边方格地图应用寻径到计算移动范围
    • 友情链接

      • Arduino入门与进阶
      • 专筑网
      • 骑驴玩漂移
    返回顶部   苏ICP备15051279号-2 © | Theme frontopen2