图像纹理

作者: 大龙10 | 来源:发表于2022-05-17 05:07 被阅读0次

书名:代码本色:用编程模拟自然系统
作者:Daniel Shiffman
译者:周晗彬
ISBN:978-7-115-36947-5
目录

4.13 图像纹理和加法混合

1、粒子系统图像纹理

  既然谈到粒子系统,我们还是有必要探讨一下用粒子纹理化渲染图像的例子。在你在设计特效时,如何选择粒子的绘制方式往往是个难题。

  在开始编码前,我们应该先准备好纹理图像。我建议你使用PNG格式的图像,因为在绘制图像时,Processing会为你保留PNG的alpha通道(透明度),这是你将这些纹理作为粒子叠加渲染时所必须的。一旦你将PNG图像放到Sketch的data目录中,后续只要写少量代码就可以完成这个功能。

2、示例

示例代码4-8 粒子系统图像纹理

ParticleSystem ps;

void setup() {
  size(640,360);
  PImage img = loadImage("texture.png");
  ps = new ParticleSystem(0,new PVector(width/2,height-75),img);
}

void draw() {
  background(0);
  
  // Calculate a "wind" force based on mouse horizontal position
  float dx = map(mouseX,0,width,-0.2,0.2);
  PVector wind = new PVector(dx,0);
  ps.applyForce(wind);
  ps.run();
  for (int i = 0; i < 2; i++) {
    ps.addParticle();
  }
  
  // Draw an arrow representing the wind force
  drawVector(wind, new PVector(width/2,50,0),500);

}

// Renders a vector object 'v' as an arrow and a position 'loc'
void drawVector(PVector v, PVector pos, float scayl) {
  pushMatrix();
  float arrowsize = 4;
  // Translate to position to render vector
  translate(pos.x,pos.y);
  stroke(255);
  // Call vector heading function to get direction (note that pointing up is a heading of 0) and rotate
  rotate(v.heading2D());
  // Calculate length of vector & scale it to be bigger or smaller if necessary
  float len = v.mag()*scayl;
  // Draw three lines to make an arrow (draw pointing up since we've rotate to the proper direction)
  line(0,0,len,0);
  line(len,0,len-arrowsize,+arrowsize/2);
  line(len,0,len-arrowsize,-arrowsize/2);
  popMatrix();
}

Particle.pde

class Particle {
  PVector pos;
  PVector vel;
  PVector acc;
  float lifespan;
  PImage img;

  Particle(PVector l,PImage img_) {
    acc = new PVector(0,0);
    float vx = randomGaussian()*0.3;
    float vy = randomGaussian()*0.3 - 1.0;
    vel = new PVector(vx,vy);
    pos = l.get();
    lifespan = 100.0;
    img = img_;
  }

  void run() {
    update();
    render();
  }
  
  // Method to apply a force vector to the Particle object
  // Note we are ignoring "mass" here
  void applyForce(PVector f) {
    acc.add(f);
  }  

  // Method to update position
  void update() {
    vel.add(acc);
    pos.add(vel);
    lifespan -= 2.5;
    acc.mult(0); // clear Acceleration
  }

  // Method to display
  void render() {
    imageMode(CENTER);
    tint(255,lifespan);
    image(img,pos.x,pos.y);
    // Drawing a circle instead
    // fill(255,lifespan);
    // noStroke();
    // ellipse(pos.x,pos.y,img.width,img.height);
  }

  // Is the particle still useful?
  boolean isDead() {
    if (lifespan <= 0.0) {
      return true;
    } else {
      return false;
    }
  }
}

ParticleSystem.pde

class ParticleSystem {

  ArrayList<Particle> particles;    // An arraylist for all the particles
  PVector origin;        // An origin point for where particles are birthed
  PImage img;

  ParticleSystem(int num, PVector v, PImage img_) {
    particles = new ArrayList<Particle>();              // Initialize the arraylist
    origin = v.get();                        // Store the origin point
    img = img_;
    for (int i = 0; i < num; i++) {
      particles.add(new Particle(origin, img));    // Add "num" amount of particles to the arraylist
    }
  }

  void run() {
    for (int i = particles.size()-1; i >= 0; i--) {
      Particle p = particles.get(i);
      p.run();
      if (p.isDead()) {
        particles.remove(i);
      }
    }
  }

  // Method to add a force vector to all particles currently in the system
  void applyForce(PVector dir) {
    // Enhanced loop!!!
    for (Particle p: particles) {
      p.applyForce(dir);
    }
  }  

  void addParticle() {
    particles.add(new Particle(origin, img));
  }

}

3、运行结果

相关文章

  • OpenGL之 纹理相关Api

    一、原始图像数据 图像存储空间 = 图像高 * 图像宽 * 每个像素的字节数 二、纹理 纹理也称纹理图像,一般指图...

  • OpenGL 纹理----相关函数

    1、原始图像数据 纹理文件.TGA。纹理其实就是图像。图像包装:图像存储空间 = 图像的⾼度 * 图像宽度 * 每...

  • 图像纹理特征总体简述

    搬运自本人 CSDN 博客:《图像纹理特征总体简述》 图像纹理特征总体简述 纹理是一种反映图像中同质现象的视觉特征...

  • OpenGL ES - 纹理

    纹理 什么是纹理 纹理是一个缓存,用来保存图像的颜色元素值 纹理可以使用任何图像 当纹理应用到图形中,会使渲染场景...

  • OpenGL ES 知识点-纹理

    纹理 纹理是用来保存图像颜色元素之的OpenGL ES 缓存.当用一个图像初始化一个纹理缓存之后,在这个图像的中的...

  • 图像纹理

    书名:代码本色:用编程模拟自然系统作者:Daniel Shiffman译者:周晗彬ISBN:978-7-115-3...

  • OpenGL ES 系列笔记二

    纹理:纹理是一个用来保存图像的颜色元素值的OpenGL ES缓存。 当一个图像初始化一个纹理缓存之后,在这个图像中...

  • 视频与图像的故事

    1.视频与图像的区别? 视频的本质是图像。二维图像包含纹理和亮度;三维图像包含纹理、亮度和深度。连续的图像构成运动...

  • 纹理介绍及常见API

    什么是纹理? 纹理是一个用来保存图像的颜色元素值的OpenGLES缓存。纹理可以使用任何图像,例如树木、动物等。当...

  • Metal 基础任务和概念 - 06

    创建和采样纹理 将图像数据加载到纹理中并将其应用于四边形 概述 您可以使用纹理在metal中绘制和处理图像。纹理是...

网友评论

    本文标题:图像纹理

    本文链接:https://www.haomeiwen.com/subject/adusurtx.html