Giter Club home page Giter Club logo

Comments (4)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
I understand your problem, but its not a library to fix those issues but a 
client code that should handle this. Imagine if library would do what you ask 
for - rotate from-to using shortest path - if you would like to do it otherwise 
(using long way) - it would be almost impossible by default. However in current 
design both (long and short way) are possible - but decision is given to a 
library client how to handle it.

I will try to give you example in fiddler how to fix your code.

Original comment by [email protected] on 25 Jun 2013 at 10:26

from jqueryrotate.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
Please check http://jsfiddle.net/vPFdJ/
It might not be exactly what you need, but shows the idea how you might solve 
your problem.

Original comment by [email protected] on 25 Jun 2013 at 10:48

  • Changed state: Done

from jqueryrotate.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
Thanks for the prompt reply, this seems to be getting me closer to solving the 
problem, although I know have a similar issue at 180degrees rather than 0/360. 
I've attached a zip file if you're interested in having a look.

Thanks,

Ash

Original comment by [email protected] on 25 Jun 2013 at 11:43

Attachments:

from jqueryrotate.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
Solved! I used the exact code from your jsFiddle but swapped the 

if (currentdeg-deg<0){ deg+=360; } else { deg -=360; }

to

if (currentdeg-deg<0){ deg-=360; } else { deg +=360; }

Thanks very much! Great plugin by the way, will definitely be using a lot in 
the future!

Original comment by [email protected] on 25 Jun 2013 at 12:36

from jqueryrotate.

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.