Code Monkey home page Code Monkey logo

Comments (4)

tfriedel6 avatar tfriedel6 commented on June 23, 2024

I can't see what's wrong with the slowdraw1 example, but in tilemap4 I can see the lines remaining when scaling with the mouse wheel. But that's because the FillRect call is also scaled, so it doesn't actually draw over everything.

What you would have to do is do the FillRect call before the Scale and Translate calls. Also, transformations (like Scale and Translate) are cumulative, so if you call Scale(0.5, 0.5) twice, you get the same as calling Scale(0.25, 0.25). This also works across frames. So what you have to do is call Save() before doing the transformations, then Restore() after all the drawing (or use defer).

Hope that helps

from canvas.

5k3105 avatar 5k3105 commented on June 23, 2024

I moved the 'clear screen' to the top like you said and that fixed it (https://github.com/5k3105/tilemap5).
Still see line drawn beneath on slowdraw (https://github.com/5k3105/slowdraw2).
Are you also using win7?

from canvas.

tfriedel6 avatar tfriedel6 commented on June 23, 2024

I tried it under Linux and Win10 and it looks the same, but I don't have a Win7 installation to test on.

But I'm not sure what I should be seeing. At the moment there is a square being drawn from the top and bottom centers toward the side centers. Just before the square closes, it all gets cleared and starts over. Is that correct?

from canvas.

5k3105 avatar 5k3105 commented on June 23, 2024

Yes. But I continue to see a square beneath - it doesn't seem to clear. If it works on win10 I will assume it's something particular with my machine. Thanks!

from canvas.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.