Subversion Repositories DIN Is Noise

Rev

Rev 2097 | Blame | Compare with Previous | Last modification | View Log | RSS feed

/*
* constant_radius.h
* DIN Is Noise is copyright (c) 2006-2025 Jagannathan Sampath
* DIN Is Noise is released under GNU Public License 2.0
* For more information, please visit https://dinisnoise.org/
*/


#ifndef __CONSTANT_RADIUS
#define __CONSTANT_RADIUS

/*
* constant_radius.h
* DIN Is Noise is copyright (c) 2006-2025 Jagannathan Sampath
* For more information, please visit https://dinisnoise.org/
*/



#include "funktion.h"

struct constant_radius : funktion {
  float operator() (float a, float ea) {
    return 1.0f; // for standard circle
  }
};

#endif