Howto:Prototyping new Nasal based Canvas Elements

From FlightGear wiki
Revision as of 16:22, 5 November 2017 by Hooray (talk | contribs) (https://sourceforge.net/p/flightgear/flightgear/ci/next/tree/src/Scripting/NasalCanvas.cxx#l486)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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

Related

References