Git Product home page Git Product logo

Comments (3)

GoogleCodeExporter avatar GoogleCodeExporter commented on August 12, 2024
Agreed.  This is a change I would have liked rolling into the last update but 
was 
overlooked.  Will be done for next release.

You keep this up, Mike, and I'm going to have to start subversioning.  ;P

Original comment by [email protected] on 22 Jun 2009 at 7:39

  • Added labels: Priority-High, Type-Enhancement
  • Removed labels: Priority-Medium, Type-Defect

from collisiondetectionkit.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 12, 2024
There are lots of more places in your code where strong typing is pleased. Start
subversioning :-P.

Original comment by [email protected] on 24 Jun 2009 at 5:28

from collisiondetectionkit.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 12, 2024
I just made some changes in findCollisions() to support strongly-typed 
parameters.
I find this helpful because I can keep strict mode and all warnings.

protected function findCollisions(item1:DisplayObject, item2:DisplayObject):void
{
    var item1_isText:Boolean = false, item2_isText:Boolean = false;
    var item1xDiff:Number, item1yDiff:Number;
    if (item1 is TextField)         
    {
        item1_isText = ( TextField(item1).antiAliasType == "advanced") ? true : false;
        TextField(item1).antiAliasType = ( TextField(item1).antiAliasType == "advanced") ? "normal" :  TextField(item1).antiAliasType;
    }
    if(item2 is TextField)
    {
        item2_isText = ( TextField(item2).antiAliasType == "advanced") ? true : false;
        TextField(item2).antiAliasType = (  TextField(item2).antiAliasType == "advanced") ? "normal" : TextField(item2).antiAliasType;
    }

Original comment by [email protected] on 18 Dec 2010 at 6:15

from collisiondetectionkit.

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.