Skip to content

Commit

Permalink
removed long compile time vars
Browse files Browse the repository at this point in the history
  • Loading branch information
szotyi committed Sep 29, 2016
1 parent 43ff6c6 commit 4a61d6d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Sources/M13CheckboxPathPresets.swift
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ internal class M13CheckboxPathPresets {

/// The intersection point between the extended long checkmark arm, and the box.
var checkmarkLongArmBoxIntersectionPoint: CGPoint {

return CGPoint.zero
/*
let radius = (size - boxLineWidth) / 2.0
let theta = checkmarkProperties.longArmBoxIntersectionAngle

Expand Down Expand Up @@ -108,9 +109,12 @@ internal class M13CheckboxPathPresets {
return CGPoint(x: x, y: y)
}
}
*/
}

var checkmarkLongArmEndPoint: CGPoint {
return CGPoint.zero
/*
// Known variables
let boxEndPoint = checkmarkLongArmBoxIntersectionPoint
let x2 = boxEndPoint.x
Expand Down Expand Up @@ -145,6 +149,7 @@ internal class M13CheckboxPathPresets {
let y = (g1 + g2 - (0.25 * sqrt(subY1)) + (boxLineWidth / 2.0)) / f

return CGPoint(x: x, y: y)
*/
}

var checkmarkMiddlePoint: CGPoint {
Expand Down

0 comments on commit 4a61d6d

Please sign in to comment.