Howto:Prototyping new Nasal based Canvas Elements: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
Line 19: Line 19:


== See also ==
== See also ==
* [http://api-docs.freeflightsim.org/simgear/classsimgear_1_1PropertyBasedElement.html PropertyBasedElement]
* [http://api-docs.freeflightsim.org/simgear/classsimgear_1_1canvas_1_1Element.html sc::Element]
* [http://api-docs.freeflightsim.org/simgear/classsimgear_1_1canvas_1_1Element.html sc::Element]
* [http://api-docs.freeflightsim.org/simgear/classsimgear_1_1canvas_1_1Group.html sc::Group]
* [http://api-docs.freeflightsim.org/simgear/classsimgear_1_1canvas_1_1Group.html sc::Group]

Revision as of 16:26, 5 November 2017

This article is a stub. You can help the wiki by expanding it.

Idea

var myNewCanvasElement = {
new: func() {
var m = { parents:[Canvas.Element] };
return m;
},
del: func() {
},

};

Background

Motivation

See also

Related

References