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

day()天

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

卡萨布兰卡 文档 围观226次 留下评论
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()形状模式

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

shape()形状

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

卡萨布兰卡 文档 围观1111次 留下评论
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()二次贝塞尔曲线的顶点坐标

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

endShape()结束图形

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

endContour()结束绘制负形状

卡萨布兰卡 文档 围观213次 留下评论
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()曲线顶点

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

bezierVertex()贝塞尔曲线顶点

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

beginShape()开始绘制图形

卡萨布兰卡 文档 围观1337次 留下评论
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()开始负形状

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

卡萨布兰卡 文档 围观763次 留下评论
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()描边接头

卡萨布兰卡 文档 围观495次 留下评论
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()描边帽

卡萨布兰卡 文档 围观754次 留下评论
strokeCap()描边帽 NamestrokeCap()描边帽  Examples strokeWeight(12.0); strokeCap(ROUND); line(20, 30, 80, 30); strokeCap(SQUARE); line(20, 50, 80, 50); strokeCap(PRO.... Read More >
2017
08-01

rectMode()矩形模式

卡萨布兰卡 文档 围观958次 留下评论
rectMode()矩形模式 NamerectMode()矩形模式  Examples rectMode(CORNER); // Default rectMode is CORNER fill(255); // Set fill to white rect(25, 25, 50, 50); // Draw w.... Read More >
2017
08-01

ellipseMode()椭圆模式

卡萨布兰卡 文档 围观1124次 留下评论
ellipseMode()椭圆模式 NameellipseMode()椭圆模式  Examples ellipseMode(RADIUS); // Set ellipseMode to RADIUS fill(255); // Set fill to white ellipse(50, 50, 30, 30); /.... Read More >
2017
08-01

sphereDetail()球面分辨率

卡萨布兰卡 文档 围观451次 留下评论
NamesphereDetail()球面分辨率  Examplesvoid setup() { size(100, 100, P3D); }  void draw() { background(200); stroke(255, 50); translate(50, 50, 0); rotateX(mouseY * 0.05); rotateY(mouseX * 0.0.... Read More >
« 上一页56789101112131415下一页 »
  • 注册 记住我的登录信息

  • processing

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

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

    • 近期评论

      • 卡萨布兰卡

        卡萨布兰卡 6月之前说:

        真的很难

      • menber 7月之前说:

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

      • 肖志喜 8月之前说:

        我想学习这个编程艺术

      • 小鱼 9月之前说:

        小白求详解

      • 灰灰 10月之前说:

        请问qq群如何添加

    • 随机文章

      • 世界,您好!
      • 习作AE_雨刮器效果
      • atan() 反正切
      • textWidth()文本宽度
      • normal()设置当前正常向量
      • > (greater than)大于
      • mouseX鼠标的当前水平坐标
      • mouseButton鼠标按钮
      • {} (curly braces)大括号
      • noTint()删除显示图像的当前填充值
    • 功能

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