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

createImage()创建图像

卡萨布兰卡 文档 围观693次 留下评论
createImage()创建图像 NamecreateImage()创建图像  Examples PImage img = createImage(66, 66, RGB); img.loadPixels(); for (int i = 0; i < img.pixels.length; i++) { img.... Read More >
2017
08-08

saturation()颜色的饱和度值

卡萨布兰卡 文档 围观321次 留下评论
saturation()颜色的饱和度值 Namesaturation()颜色的饱和度值  Examples noStroke(); colorMode(HSB, 255); color c = color(0, 126, 255); fill(c); rect(15, 20, 35, 60); float value = s.... Read More >
2017
08-08

red()红色值

卡萨布兰卡 文档 围观493次 留下评论
red()红色值 Namered()红色值  Examples color c = color(255, 204, 0); // Define color 'c' fill(c); // Use color variable 'c' as fill color rect(15, 20, 35, 60.... Read More >
2017
08-08

lerpColor()线性颜色

卡萨布兰卡 文档 围观837次 留下评论
lerpColor()线性颜色 NamelerpColor()线性颜色  Examples stroke(255); background(51); color from = color(204, 102, 0); color to = color(0, 102, 153); color interA = lerpC.... Read More >
2017
08-08

hue()色调值

卡萨布兰卡 文档 围观589次 留下评论
hue()色调值 Namehue()色调值  Examples noStroke(); colorMode(HSB, 255); color c = color(0, 126, 255); fill(c); rect(15, 20, 35, 60); float value = hue(c); // .... Read More >
2017
08-08

green()绿色值

卡萨布兰卡 文档 围观426次 留下评论
green()绿色值 Namegreen()绿色值  Examples color c = color(20, 75, 200); // Define color 'c' fill(c); // Use color variable 'c' as fill color rect(15, 20, 35, .... Read More >
2017
08-08

color()颜色类型

卡萨布兰卡 文档 围观781次 留下评论
color()颜色类型 Name color()颜色类型 Examples color c = color(255, 204, 0); // Define color 'c' fill(c); // Use color variable 'c' as fill.... Read More >
2017
08-08

brightness()颜色的亮度值

卡萨布兰卡 文档 围观474次 留下评论
brightness()颜色的亮度值 Namebrightness()颜色的亮度值  Examples noStroke(); colorMode(HSB, 255); color c = color(0, 126, 255); fill(c); rect(15, 20, 35, 60); float value = br.... Read More >
2017
08-08

blue()蓝色值

卡萨布兰卡 文档 围观571次 留下评论
blue()蓝色值 Nameblue()蓝色值  Examples color c = color(175, 100, 220); // Define color 'c' fill(c); // Use color variable 'c' as fill color rect(15, 20, 35,.... Read More >
2017
08-08

alpha()颜色的透明度值

卡萨布兰卡 文档 围观947次 留下评论
alpha()颜色的透明度值 Namealpha()颜色的透明度值  Examples noStroke(); color c = color(0, 126, 255, 102); fill(c); rect(15, 15, 35, 70); float value = alpha(c); // Sets 'va.... Read More >
2017
08-08

stroke()描边

卡萨布兰卡 文档 围观1514次 留下评论
stroke()描边 Namestroke()描边  Examples stroke(153); rect(30, 20, 55, 55); stroke(204, 102, 0); rect(30, 20, 55, 55);DescriptionSets the color used to.... Read More >
2017
08-08

noStroke()禁用描边

卡萨布兰卡 文档 围观906次 留下评论
noStroke()禁用描边 NamenoStroke()禁用描边  Examples noStroke(); rect(30, 20, 55, 55);DescriptionDisables drawing the stroke (outline). If both noStroke() and noFill().... Read More >
2017
08-08

noFill()不填充

卡萨布兰卡 文档 围观568次 留下评论
noFill()不填充 NamenoFill()不填充  Examples rect(15, 10, 55, 55); noFill(); rect(30, 20, 55, 55);DescriptionDisables filling geometry. If both noStroke() and noF.... Read More >
2017
08-08

fill()填充颜色

卡萨布兰卡 文档 围观1940次 留下评论
fill()填充颜色 Namefill()填充颜色  Examples fill(153); rect(30, 20, 55, 55); fill(204, 102, 0); rect(30, 20, 55, 55);DescriptionSets the color used to fil.... Read More >
2017
08-08

colorMode()颜色模式

卡萨布兰卡 文档 围观2271次 留下评论
colorMode()颜色模式 NamecolorMode()颜色模式  Examples noStroke(); colorMode(RGB, 100); for (int i = 0; i < 100; i++) { for (int j = 0; j < 100; j++) { stro.... Read More >
2017
08-08

clear()清空

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

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

specular()镜面

卡萨布兰卡 文档 围观444次 留下评论
specular()镜面 Namespecular()镜面  Examples size(100, 100, P3D); background(0); noStroke(); background(0); fill(0, 51, 102); lightSpecular(255, 255, 255); direc.... Read More >
« 上一页12345678910下一页 »
  • 注册 记住我的登录信息

  • processing

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

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

    • 近期评论

      • 卡萨布兰卡

        卡萨布兰卡 6月之前说:

        真的很难

      • menber 7月之前说:

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

      • 肖志喜 8月之前说:

        我想学习这个编程艺术

      • 小鱼 9月之前说:

        小白求详解

      • 灰灰 10月之前说:

        请问qq群如何添加

    • 随机文章

      • while
      • . (dot)点
      • void函数不返回值
      • pmouseY鼠标上一帧的垂直位置
      • 有趣的粒子编程
      • << (left shift) 左移
      • randomGaussian()
      • 我是小熊猫
      • – (minus) 减
      • int整数
    • 功能

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