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

endCamera()关闭相机

卡萨布兰卡 文档 围观253次 留下评论
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()设置相机位置

卡萨布兰卡 文档 围观839次 留下评论
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()开始相机

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

spotLight()聚光灯

卡萨布兰卡 文档 围观481次 留下评论
spotLight()聚光灯 NamespotLight()聚光灯  Examples size(100, 100, P3D); background(0); noStroke(); spotLight(51, 102, 126, 80, 20, 40, -1, 0, 0, PI/2, 2); translate(.... Read More >
2017
08-05

pointLight()添加点光源

卡萨布兰卡 文档 围观629次 留下评论
pointLight()添加点光源 NamepointLight()添加点光源  Examples size(100, 100, P3D); background(0); noStroke(); pointLight(51, 102, 126, 35, 40, 36); translate(80, 50, 0); sph.... Read More >
2017
08-05

normal()设置当前正常向量

卡萨布兰卡 文档 围观360次 留下评论
normal()设置当前正常向量 Namenormal()设置当前正常向量  Examples size(100, 100, P3D); noStroke(); background(0); pointLight(150, 250, 150, 10, 30, 50); beginShape(); normal(0, 0.... Read More >
2017
08-05

noLights()禁用照明

卡萨布兰卡 文档 围观258次 留下评论
NamenoLights()禁用照明  DescriptionDisable all lighting. Lighting is turned off by default and enabled with the lights() function. This function can be used to disable lighting so that 2D geometry (which .... Read More >
2017
08-05

lightSpecular()光镜面

卡萨布兰卡 文档 围观462次 留下评论
lightSpecular()光镜面 NamelightSpecular()光镜面  Examples size(100, 100, P3D); background(0); noStroke(); directionalLight(102, 102, 102, 0, 0, -1); lightSpecular(204, .... Read More >
2017
08-04

发放第三期BOSS的源代码

虎牙拯救世界 Sktech 围观883次 留下评论
FlowField flow; ArrayList<Vehicle> vlist; PVector center; void setup() { size(1200, 600); flow = new FlowField(); vlist = new ArrayList<Vehicle>(); for (int i = 0; i<70; i++).... Read More >
2017
08-02

lights()设置默认光源参数

卡萨布兰卡 文档 围观317次 留下评论
lights()设置默认光源参数 Name lights()设置默认光源参数 Examples size(100, 100, P3D); background(0); noStroke(); // Sets the default ambient //.... Read More >
2017
08-02

lightFalloff()光源衰减率

卡萨布兰卡 文档 围观908次 留下评论
lightFalloff()光源衰减率 Name lightFalloff()光源衰减率 Examples size(100, 100, P3D); noStroke(); background(0); lightFalloff(1.0, 0.001, 0.0);.... Read More >
2017
08-02

directionalLight()定向光源

卡萨布兰卡 文档 围观630次 留下评论
directionalLight()定向光源 Name directionalLight()定向光源 Examples         size(100, 100, P3D); background(0); noStroke(); directionalLight.... Read More >
2017
08-02

ambientLight()环境光源

卡萨布兰卡 文档 围观1012次 留下评论
ambientLight()环境光源 NameambientLight()环境光源  Examples size(100, 100, P3D); background(0); noStroke(); // The spheres are white by default so // the ambient light ch.... Read More >
2017
08-02

selectOutput()选择输出

卡萨布兰卡 文档 围观620次 留下评论
NameselectOutput()选择输出  Examplesvoid setup() { selectOutput("Select a file to write to:", "fileSelected"); }  void fileSelected(File selection) { if (selection == null) { println("Window was .... Read More >
2017
08-02

saveXML()保存XML对象

卡萨布兰卡 文档 围观447次 留下评论
NamesaveXML()保存XML对象  Examples// The following short XML file called "mammals.xml" is parsed // in the code below. It must be in the project's "data" folder. // // <?xml version="1.0"?> // <.... Read More >
2017
08-02

saveTable()保存表

卡萨布兰卡 文档 围观233次 留下评论
NamesaveTable()保存表  ExamplesTable table;  void setup() {   table = new Table();   table.addColumn("id"); table.addColumn("species"); table.addColumn("name");   TableRow newRow = table.a.... Read More >
2017
08-02

saveStrings()保存字符串

卡萨布兰卡 文档 围观574次 留下评论
NamesaveStrings()保存字符串  ExamplesString words = "apple bear cat dog"; String[] list = split(words, ' ');  // Writes the strings to a file, each on a separate line saveStrings("nouns.txt", list);Descri.... Read More >
2017
08-02

saveStream()保存流文件

卡萨布兰卡 文档 围观333次 留下评论
NamesaveStream()保存流文件  Examples DescriptionSave the contents of a stream to a file in the sketch folder. This is basically saveBytes(blah, loadBytes()), but done more efficiently (and with less confus.... Read More >
« 上一页12345678910下一页 »
  • 注册 记住我的登录信息

  • processing

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

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

    • 近期评论

      • DEM 3月之前说:

        很有意思,想学习一下。

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

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

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

      • danny 1年之前说:

    • 随机文章

      • selectFolder()打开文件选择器
      • setup()初始化
      • 我是小熊猫,分享一本《processing权威指南》
      • radians()
      • concat()串联两个数组
      • print()打印
      • PI (π)
      • case
      • 小清新画风的船
      • 习作XX_伪单片机编程器
    • 功能

      • 注册
      • 登录
      • 文章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