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

imageMode()图像模式

卡萨布兰卡 文档 围观1139次 留下评论
imageMode()图像模式 NameimageMode()图像模式  Examples PImage img;  void setup() { img = loadImage("laDefense.jpg"); }  void draw() { imageMode(CORNER); image(i.... Read More >
2017
08-08

image()图像函数

卡萨布兰卡 文档 围观1418次 留下评论
image()图像函数 Nameimage()图像函数  Examples PImage img;  void setup() { // Images must be in the "data" directory to load correctly img = loadImage("laDefen.... Read More >
2017
08-08

PImage图像数据类型

卡萨布兰卡 文档 围观1218次 留下评论
PImage图像数据类型 NamePImage图像数据类型Examples PImage photo;  void setup() { size(100, 100); photo = loadImage("laDefense.jpg"); }  void draw() { image(photo.... Read More >
2017
08-08

createImage()创建图像

卡萨布兰卡 文档 围观924次 留下评论
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()颜色的饱和度值

卡萨布兰卡 文档 围观482次 留下评论
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()红色值

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

卡萨布兰卡 文档 围观1111次 留下评论
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()色调值

卡萨布兰卡 文档 围观782次 留下评论
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()绿色值

卡萨布兰卡 文档 围观525次 留下评论
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()颜色类型

卡萨布兰卡 文档 围观976次 留下评论
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()颜色的亮度值

卡萨布兰卡 文档 围观608次 留下评论
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()蓝色值

卡萨布兰卡 文档 围观759次 留下评论
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()颜色的透明度值

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

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

卡萨布兰卡 文档 围观1238次 留下评论
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()不填充

卡萨布兰卡 文档 围观787次 留下评论
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()填充颜色

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

卡萨布兰卡 文档 围观2972次 留下评论
colorMode()颜色模式 NamecolorMode()颜色模式  Examples noStroke(); colorMode(RGB, 100); for (int i = 0; i < 100; i++) { for (int j = 0; j < 100; j++) { stro.... Read More >
« 上一页12345678910下一页 »
  • 注册 记住我的登录信息

  • processing

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

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

    • 近期评论

      • DEM 1年之前说:

        很有意思,想学习一下。

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

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

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

      • danny 2年之前说:

    • 随机文章

      • 习作BL_另一套自创界面
      • 献给Processing爱好者的教程【5】—processing3中手动安装video库【卡卡】
      • / (divide) 除
      • sqrt() 平方根
      • saveStream()保存流文件
      • 习作BC_模拟自动往返投料小车
      • rect()矩形
      • specular()镜面
      • BufferedReader缓冲读取文件
      • nfp()数字格式化字符串函数
    • 功能

      • 注册
      • 登录
      • 文章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月
    • 2023年3月
      一 二 三 四 五 六 日
      « 5月    
       12345
      6789101112
      13141516171819
      20212223242526
      2728293031  
    • 标签

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

      • Arduino IDE下合宙ESP32C3使用方法
      • 带存储和重置功能的 WiFiConFig
      • esp32核心库的分享
      • 小清新画风的船
      • 测试2
    • 友情链接

      • Arduino入门与进阶
      • 一切伟大的事情都从编程和绘画开始
      • 专筑网
      • 骑驴玩漂移
    返回顶部   苏ICP备15051279号-2 © | Theme frontopen2