From 9fa80b1a619ee17f3b9ffef98f8d1ee0bcc80257 Mon Sep 17 00:00:00 2001 From: treeform Date: Wed, 25 Nov 2020 10:10:08 -0800 Subject: [PATCH] Small clean up! --- src/pixie/images.nim | 62 +------------------------------------------- 1 file changed, 1 insertion(+), 61 deletions(-) diff --git a/src/pixie/images.nim b/src/pixie/images.nim index 573e038..fafb417 100644 --- a/src/pixie/images.nim +++ b/src/pixie/images.nim @@ -1,4 +1,4 @@ -import chroma, blends, vmath +import chroma, blends, vmath, common type Image* = ref object @@ -304,36 +304,6 @@ proc drawStepper*(a: Image, b: Image, mat: Mat3, blendMode: BlendMode): Image = ## Draws one image onto another using matrix with color blending. result = newImageNoInit(a.width, a.height) - type Segment = object - ## A math segment from point "at" to point "to" - at*: Vec2 - to*: Vec2 - - proc segment(at, to: Vec2): Segment = - result.at = at - result.to = to - - proc intersects(a, b: Segment, at: var Vec2): bool = - ## Checks if the a segment intersects b segment. - ## If it returns true, at will have point of intersection - var s1x, s1y, s2x, s2y: float32 - s1x = a.to.x - a.at.x - s1y = a.to.y - a.at.y - s2x = b.to.x - b.at.x - s2y = b.to.y - b.at.y - - var s, t: float32 - s = (-s1y * (a.at.x - b.at.x) + s1x * (a.at.y - b.at.y)) / - (-s2x * s1y + s1x * s2y) - t = (s2x * (a.at.y - b.at.y) - s2y * (a.at.x - b.at.x)) / - (-s2x * s1y + s1x * s2y) - - if s >= 0 and s < 1 and t >= 0 and t < 1: - at.x = a.at.x + (t * s1x) - at.y = a.at.y + (t * s1y) - return true - return false - var matInv = mat.inverse() # compute movement vectors @@ -492,36 +462,6 @@ proc draw*(a: Image, b: Image, pos = vec2(0, 0), blendMode = bmNormal): Image = proc drawInPlace*(a: Image, b: Image, mat: Mat3, blendMode = bmNormal) = ## Draws one image onto another using matrix with color blending. - type Segment = object - ## A math segment from point "at" to point "to" - at*: Vec2 - to*: Vec2 - - proc segment(at, to: Vec2): Segment = - result.at = at - result.to = to - - proc intersects(a, b: Segment, at: var Vec2): bool = - ## Checks if the a segment intersects b segment. - ## If it returns true, at will have point of intersection - var s1x, s1y, s2x, s2y: float32 - s1x = a.to.x - a.at.x - s1y = a.to.y - a.at.y - s2x = b.to.x - b.at.x - s2y = b.to.y - b.at.y - - var s, t: float32 - s = (-s1y * (a.at.x - b.at.x) + s1x * (a.at.y - b.at.y)) / - (-s2x * s1y + s1x * s2y) - t = (s2x * (a.at.y - b.at.y) - s2y * (a.at.x - b.at.x)) / - (-s2x * s1y + s1x * s2y) - - if s >= 0 and s < 1 and t >= 0 and t < 1: - at.x = a.at.x + (t * s1x) - at.y = a.at.y + (t * s1y) - return true - return false - var matInv = mat.inverse() # compute movement vectors