Fixed issue with guides

This commit is contained in:
Devine Lu Linvega 2019-07-28 07:09:36 +09:00
parent 38ee25ac2c
commit 9f15dae5b2
2 changed files with 9 additions and 9 deletions

View File

@ -213,7 +213,7 @@ function Commander (ronin) {
// Splash // Splash
this.splash = `; welcome to ronin - v2.21 this.splash = `; welcome to ronin - v2.23
(clear) (clear)
(def frame-rect (def frame-rect
(frame)) (frame))

View File

@ -179,14 +179,14 @@ function Surface (ronin) {
this.drawGuide = function (shape, color = 'white', context = this.guide) { this.drawGuide = function (shape, color = 'white', context = this.guide) {
if (!shape) { return } if (!shape) { return }
this.stroke(shape.rect || shape, 4, 'black', context) this.stroke(shape.rect || shape, 'black', 4, context)
if (shape.pos) { this.stroke(shape.pos, 4, 'black', context) } if (shape.pos) { this.stroke(shape.pos, 'black', 4, context) }
if (shape.line) { this.stroke(shape.line, 4, 'black', context) } if (shape.line) { this.stroke(shape.line, 'black', 4, context) }
if (shape.circle) { this.stroke(shape.circle, 4, 'black', context) } if (shape.circle) { this.stroke(shape.circle, 'black', 4, context) }
this.stroke(shape.rect || shape, 1.5, color, context) this.stroke(shape.rect || shape, color, 1.5, context)
if (shape.pos) { this.stroke(shape.pos, 1.5, color, context) } if (shape.pos) { this.stroke(shape.pos, color, 1.5, context) }
if (shape.line) { this.stroke(shape.line, 1.5, color, context) } if (shape.line) { this.stroke(shape.line, color, 1.5, context) }
if (shape.circle) { this.stroke(shape.circle, 1.5, color, context) } if (shape.circle) { this.stroke(shape.circle, color, 1.5, context) }
} }
this.clone = function (a, b) { this.clone = function (a, b) {