fileAirstreamFilter.h
  0
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
/*
*  AirstreamFilter.h
*
*  Created by Daisuke Nogami on Sep, 05.
*  opyright 2005 Daisuke Nogami [null-null.net]. Some rights reserved.
*/
 
#pragma once
 
#include <iostream>
#include <cmath>
#include <ctime>
 
// selfmade class
#include "CellSet.h"
 
class AirstreamFilter{
private:
  float wind_dir;
  float wind_speed;
 
  float dirX, dirY;
  float nextDirX, nextDirY;
  float srcY;
  float nextSrcY;
  int timer;
 
  float mass;    // Mass
  float k;    // Spring constant
  float damp;    // Damping
 
  float velx;    // X Velocity
  float vely;    // Y Velocity
  float velsrcy;  // srcY Velocity
  float accel;  // Acceleration
  float force;  // Force
 
public:
  AirstreamFilter();
  void sync( float wind_dir, float wind_spped );
  void update();
  void mappingTo( CellSet* cellset );
};
[トップ] [一覧] [最終更新] [検索] [バックアップ]