Select Git revision
BootloaderDFU.h
-
Dean Camera authored
Added parameter directions to function parameter documentation. Added new experimental FAST_STREAM_FUNCTIONS compile time option to speed up stream transfers at the expense of a higher FLASH consumption (needs testing to verify improved throughput).
Dean Camera authoredAdded parameter directions to function parameter documentation. Added new experimental FAST_STREAM_FUNCTIONS compile time option to speed up stream transfers at the expense of a higher FLASH consumption (needs testing to verify improved throughput).
PhysicsMenuView.js 566 B
/**
* Created by aghassaei on 2/25/15.
*/
PhysicsMenuView = Backbone.View.extend({
el: "#menuContent",
events: {
},
initialize: function(options){
_.bindAll(this, "render");
},
render: function(){
if (this.model.get("currentTab") != "physics") return;
this.$el.html(this.template());
},
template: _.template('\
world physics: gravity, global forces\
<br/><br/>\
part connection stiffness\
<br/><br/>\
ground/fixed/boundary conditions definition\
')
});