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

minute()分

卡萨布兰卡 文档 围观259次 留下评论
Nameminute()分  Examplesvoid draw() { background(204); int s = second(); // Values from 0 - 59 int m = minute(); // Values from 0 - 59 int h = hour(); // Values from 0 - 23 line(s, 0, s,.... Read More >
2017
08-01

millis()毫秒

卡萨布兰卡 文档 围观936次 留下评论
Namemillis()毫秒  Examplesvoid draw() { int m = millis(); noStroke(); fill(m % 255); rect(25, 25, 50, 50); } DescriptionReturns the number of milliseconds (thousandths of a second) since startin.... Read More >
2017
08-01

hour()小时

卡萨布兰卡 文档 围观238次 留下评论
Namehour()小时  Examplesvoid draw() { background(204); int s = second(); // Values from 0 - 59 int m = minute(); // Values from 0 - 59 int h = hour(); // Values from 0 - 23 line(s, 0, s, .... Read More >
2017
08-01

day()天

卡萨布兰卡 文档 围观238次 留下评论
Nameday()天  Examplesint d = day(); // Values from 1 - 31 int m = month(); // Values from 1 - 12 int y = year(); // 2003, 2004, 2005, etc.  String s = String.valueOf(d); text(s, 10, 28); s = Str.... Read More >
2017
08-01

subset()子集

卡萨布兰卡 文档 围观312次 留下评论
Namesubset()子集  ExamplesString[] sa1 = { "OH", "NY", "CA", "VA", "CO", "IL" }; String[] sa2 = subset(sa1, 1); println(sa2); // Prints the following array contents to the console: // [0] "NY" // [1] "C.... Read More >
2017
08-01

shapeMode()形状模式

卡萨布兰卡 文档 围观850次 留下评论
shapeMode()形状模式 NameshapeMode()形状模式  Examples PShape bot  void setup() { size(100, 100); bot = loadShape("bot.svg"); }  void draw() { shapeMode(CENTER.... Read More >
2017
08-01

shape()形状

卡萨布兰卡 文档 围观845次 留下评论
shape()形状 Nameshape()形状  Examples PShape s;  void setup() { s = loadShape("bot.svg"); }  void draw() { shape(s, 10, 10, 80, 80); }DescriptionDraws .... Read More >
2017
08-01

vertex()顶点

卡萨布兰卡 文档 围观1306次 留下评论
vertex()顶点 Namevertex()顶点  Examples beginShape(POINTS); vertex(30, 20); vertex(85, 20); vertex(85, 75); vertex(30, 75); endShape(); // Drawing ver.... Read More >
2017
08-01

quadraticVertex()二次贝塞尔曲线的顶点坐标

卡萨布兰卡 文档 围观1127次 留下评论
quadraticVertex()二次贝塞尔曲线的顶点坐标 NamequadraticVertex()二次贝塞尔曲线的顶点坐标  Examples noFill(); strokeWeight(4); beginShape(); vertex(20, 20); quadraticVertex(80, 20, 50, 50); endShape(.... Read More >
2017
08-01

endShape()结束图形

卡萨布兰卡 文档 围观554次 留下评论
endShape()结束图形 NameendShape()结束图形  Examples noFill();  beginShape(); vertex(20, 20); vertex(45, 20); vertex(45, 80); endShape(CLOSE);  beginShape(); vertex(.... Read More >
2017
08-01

endContour()结束绘制负形状

卡萨布兰卡 文档 围观276次 留下评论
endContour()结束绘制负形状 NameendContour()结束绘制负形状  Examples size(100, 100); translate(50, 50); stroke(255, 0, 0); beginShape(); // Exterior part of shape, clockwise wind.... Read More >
2017
08-01

curveVertex()曲线顶点

卡萨布兰卡 文档 围观1289次 留下评论
curveVertex()曲线顶点 NamecurveVertex()曲线顶点  Examples noFill(); beginShape(); curveVertex(84, 91); curveVertex(84, 91); curveVertex(68, 19); curveVertex(21, 17);.... Read More >
2017
08-01

bezierVertex()贝塞尔曲线顶点

卡萨布兰卡 文档 围观2000次 留下评论
bezierVertex()贝塞尔曲线顶点 NamebezierVertex()贝塞尔曲线顶点  Examples noFill(); beginShape(); vertex(30, 20); bezierVertex(80, 0, 80, 75, 30, 75); endShape(); beginShape.... Read More >
2017
08-01

beginShape()开始绘制图形

卡萨布兰卡 文档 围观1590次 留下评论
beginShape()开始绘制图形 NamebeginShape()开始绘制图形  Examples beginShape(); vertex(30, 20); vertex(85, 20); vertex(85, 75); vertex(30, 75); endShape(CLOSE); beginSh.... Read More >
2017
08-01

beginContour()开始负形状

卡萨布兰卡 文档 围观563次 留下评论
beginContour()开始负形状 NamebeginContour()开始负形状  Examples size(100, 100); translate(50, 50); stroke(255, 0, 0); beginShape(); // Exterior part of shape, clockwise wind.... Read More >
2017
08-01

strokeWeight()线重

卡萨布兰卡 文档 围观1068次 留下评论
strokeWeight()线重 NamestrokeWeight()线重  Examples strokeWeight(1); // Default line(20, 20, 80, 20); strokeWeight(4); // Thicker line(20, 40, 80, 40); strokeWeig.... Read More >
2017
08-01

strokeJoin()描边接头

卡萨布兰卡 文档 围观550次 留下评论
strokeJoin()描边接头 NamestrokeJoin()描边接头  Examples noFill(); strokeWeight(10.0); strokeJoin(MITER); beginShape(); vertex(35, 20); vertex(65, 50); vertex(35, 80); e.... Read More >
2017
08-01

strokeCap()描边帽

卡萨布兰卡 文档 围观955次 留下评论
strokeCap()描边帽 NamestrokeCap()描边帽  Examples strokeWeight(12.0); strokeCap(ROUND); line(20, 30, 80, 30); strokeCap(SQUARE); line(20, 50, 80, 50); strokeCap(PRO.... Read More >
« 上一页56789101112131415下一页 »
  • 注册 记住我的登录信息

  • processing

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

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

    • 近期评论

      • DEM 3月之前说:

        很有意思,想学习一下。

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

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

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

      • danny 1年之前说:

    • 随机文章

      • trim()去空格
      • pmouseX鼠标上一帧的水平位置
      • mouseDragged()鼠标拖动
      • ortho()邻
      • == (equality)等于
      • emissive()发射率
      • day()天
      • year()年
      • PrintWriter打印文本输出
      • 文盲角度代码分析《高级催眠(作者:Jacob Joaquin)》
    • 功能

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