ofxJSON icon indicating copy to clipboard operation
ofxJSON copied to clipboard

Add Convert Functions

Open leico opened this issue 9 years ago • 0 comments

usage:

ofxJSON json;
json["Rect"] = ofxJSON :: Convert( ofRectangle(100, 200, 300, 400) );


{
    "Rect"{
          "x"      : 100
        , "y"      : 200
        , "width"  : 300
        , "height" : 400
    }
}

if you like.

leico avatar Aug 30 '16 14:08 leico