SceneLine.js 305 B

1234567891011121314
  1. function SceneLine() {
  2. }
  3. SceneLine.prototype.setStart = function(startp) {
  4. Polycode.SceneLine_setStart(this.__ptr, startp)
  5. }
  6. SceneLine.prototype.setEnd = function(endp) {
  7. Polycode.SceneLine_setEnd(this.__ptr, endp)
  8. }
  9. SceneLine.prototype.Update = function() {
  10. Polycode.SceneLine_Update(this.__ptr)
  11. }