Howto:Prototyping new Nasal based Canvas Elements

From FlightGear wiki
Revision as of 16:26, 5 November 2017 by Hooray (talk | contribs) (→‎See also)
Jump to navigation Jump to search
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