Articles with the Haxe tag

« Page 3 / 4 »

  1. Haxe tips: better untyped expression

    Sun 08 July 2012

    tl;dr

    Remember to put the brackets

        (untyped new JQuery("#images").imageLoader)({});
    //  ^                                         ^
    //  |________these____________________________|
    

    Abstract

    Static type system of Haxe helps you a lot by performing type-checking in the compilation phase. You will be notified errors before the application is run.

    Since some Haxe targets (e.g.. JS and PHP) are …

    continue reading
  2. hxOpenFrameworks is now on haxelib!

    Sat 26 March 2011

    Yup, it’s there. You can now grab hxOpenFrameworks via haxelib install hxOpenFrameworks. It is using a version of openFrameworks that is slightly more recent than 0.062(current latest release). All Windows/Mac/Linux is supported (only 32bit though).

    For those haven’t tried haxe/cpp:

    1. Go install haxe …
    continue reading
  3. Using jQuery in haXe

    Tue 03 August 2010

    It is a kind of pain to code in JS without a proper library like jQuery. Using plain haXe in JS target is just as pain since haXe does not abstract most of the browser quirks, what it gives is only stricter typing and a little bit better core API …

    continue reading
  4. Using multiple PS3Eye cameras with haXe/C++

    Tue 08 June 2010

    Sony PS3Eye is probably the best web cam for CV stuff: not expensive, cross platform, high frame rate(up to 120fps), no image compression etc. I’ve been using it in the past year and my experience is great.

    In my final year project, I have been exploring stereo camera …

    continue reading

« Page 3 / 4 »