rename modifier to transformer

This commit is contained in:
Marc Planard 2023-06-05 11:21:16 +02:00
parent 9844475fa1
commit 12ceb6f69b
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ mod redis_ctrl;
mod conf;
mod errors;
mod point;
mod modifier;
mod transformer;
use helios_dac::{
self,
@ -21,7 +21,7 @@ use redis_ctrl::{RedisCtrl,Order};
use conf::Conf;
use errors::{LJError,LJResult};
use point::Point;
use modifier::{Transformers,Translate,Replicate};
use transformer::{Transformers,Translate,Replicate};
const CENTER : (f32,f32) = (2000.0, 2000.0);