-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extract Renderer code to a single class/interface #92
Labels
Comments
ForNeVeR
added a commit
that referenced
this issue
Nov 26, 2017
ForNeVeR
added a commit
that referenced
this issue
Nov 27, 2017
ForNeVeR
added a commit
that referenced
this issue
Nov 28, 2017
ForNeVeR
added a commit
that referenced
this issue
Nov 28, 2017
ForNeVeR
added a commit
that referenced
this issue
Nov 28, 2017
ForNeVeR
added a commit
that referenced
this issue
Nov 29, 2017
FSharp.Core was updated to use the Foq library.
ForNeVeR
added a commit
that referenced
this issue
Nov 30, 2017
ForNeVeR
added a commit
that referenced
this issue
Dec 1, 2017
ForNeVeR
added a commit
that referenced
this issue
Dec 1, 2017
ForNeVeR
added a commit
that referenced
this issue
Dec 1, 2017
ForNeVeR
added a commit
that referenced
this issue
Dec 1, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently there's a
Box.Draw
method that's implemented in a relative small number of classes.For further extensibility, I'd like these methods to be extracted to the
IRenderer
interface andWpfRenderer
class using the Visitor pattern (or something alike).In future, we'll likely extract
Box.RenderGeometry
(that has the same form as theDraw
method) to anotherIRenderer
implementation,GeometryRenderer
. That will also open a way for alternate implementations, such asDirectXRenderer
andAvaloniaRenderer
.The text was updated successfully, but these errors were encountered: