tiby312 / poloto-project

MIT License
159 stars 10 forks source link

make plotter implement a render trait? #180

Closed tiby312 closed 2 years ago

tiby312 commented 2 years ago
trait Render{
     fn render(self,w:&mut std::fmt::Write)->std::fmt::Result;
}

Additionally make it an adaptor with move semantics

tiby312 commented 2 years ago

Done