Game maker lengthdir inner implementationAlarm not working in Game MakerStoring A Facebook User's Game Data Game Makerhow to make an object visible again in game makerGame Maker: create an ennemy at a random position on the groundSpawning unique groups Game MakerGame Maker Studio views not workingGame maker- How to add a period of invulnerability between collisionsFake 3D 2D First Person Engine Game Maker StudioBall sticking to Surface Game MakerGame Maker Studio

Which museums have artworks of all four ninja turtles' namesakes?

What do solvers like Gurobi and CPLEX do when they run into hard instances of MIP

Is it safe to put a microwave in a walk-in closet?

Why do things cool down?

Why are there two bearded faces wearing red hats on my stealth bomber icon?

I feel like most of my characters are the same, what can I do?

Unable to see packet drops on tunnels

Who are the people reviewing far more papers than they're submitting for review?

Why is it called a Blood Knot?

What did the controller say during my approach to land (audio clip)?

What are the end bytes of *.docx file format

Who was Chief Poking Fire?

Escape the labyrinth!

As an employer, can I compel my employees to vote?

Does Mage Hand give away the caster's position?

The relationship of noch nicht and the passive voice

Cemented carbide swords - worth it?

How is underwater propagation of sound possible?

Is it possible that the shadow of The Moon is a single dot during solar eclipse?

Is there an in-universe reason Harry says this or is this simply a Rowling mistake?

Decimal “XOR” operator

Microservices and Stored Procedures

Applications of mathematics in clinical setting

Intuitive methods for representation of Cartesian Coordinates in terms of Spherical Coordinates as basis



Game maker lengthdir inner implementation


Alarm not working in Game MakerStoring A Facebook User's Game Data Game Makerhow to make an object visible again in game makerGame Maker: create an ennemy at a random position on the groundSpawning unique groups Game MakerGame Maker Studio views not workingGame maker- How to add a period of invulnerability between collisionsFake 3D 2D First Person Engine Game Maker StudioBall sticking to Surface Game MakerGame Maker Studio






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I wonder how lenghtdir_x/y is implemented. To my understanding this has something to do with trigonometry but since I'm a fairly new to all of this I can't figure it out myself.










share|improve this question






























    1















    I wonder how lenghtdir_x/y is implemented. To my understanding this has something to do with trigonometry but since I'm a fairly new to all of this I can't figure it out myself.










    share|improve this question


























      1












      1








      1








      I wonder how lenghtdir_x/y is implemented. To my understanding this has something to do with trigonometry but since I'm a fairly new to all of this I can't figure it out myself.










      share|improve this question














      I wonder how lenghtdir_x/y is implemented. To my understanding this has something to do with trigonometry but since I'm a fairly new to all of this I can't figure it out myself.







      game-maker






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 14:15









      smark1smark1

      62 bronze badges




      62 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0
















          You are correct, it is a bit of trigonometry - namely, converting from degrees to radians, and then multiplying a sine/cosine of that angle by "length" (hence why it is called length-dir)



          lengthdir_x(l, d) is l * cos(d * pi / -180)



          lengthdir_y(l, d) is l * sin(d * pi / -180)



          live demo for comparison



          enter image description here






          share|improve this answer
























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );














            draft saved

            draft discarded
















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55399799%2fgame-maker-lengthdir-inner-implementation%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0
















            You are correct, it is a bit of trigonometry - namely, converting from degrees to radians, and then multiplying a sine/cosine of that angle by "length" (hence why it is called length-dir)



            lengthdir_x(l, d) is l * cos(d * pi / -180)



            lengthdir_y(l, d) is l * sin(d * pi / -180)



            live demo for comparison



            enter image description here






            share|improve this answer





























              0
















              You are correct, it is a bit of trigonometry - namely, converting from degrees to radians, and then multiplying a sine/cosine of that angle by "length" (hence why it is called length-dir)



              lengthdir_x(l, d) is l * cos(d * pi / -180)



              lengthdir_y(l, d) is l * sin(d * pi / -180)



              live demo for comparison



              enter image description here






              share|improve this answer



























                0














                0










                0









                You are correct, it is a bit of trigonometry - namely, converting from degrees to radians, and then multiplying a sine/cosine of that angle by "length" (hence why it is called length-dir)



                lengthdir_x(l, d) is l * cos(d * pi / -180)



                lengthdir_y(l, d) is l * sin(d * pi / -180)



                live demo for comparison



                enter image description here






                share|improve this answer













                You are correct, it is a bit of trigonometry - namely, converting from degrees to radians, and then multiplying a sine/cosine of that angle by "length" (hence why it is called length-dir)



                lengthdir_x(l, d) is l * cos(d * pi / -180)



                lengthdir_y(l, d) is l * sin(d * pi / -180)



                live demo for comparison



                enter image description here







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 29 at 7:26









                YellowAfterlifeYellowAfterlife

                1,0519 silver badges21 bronze badges




                1,0519 silver badges21 bronze badges





















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.




















                    draft saved

                    draft discarded















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55399799%2fgame-maker-lengthdir-inner-implementation%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript