g2.setColor(COLOR);
double cwLeverLength = lever_.getCounterWeightLeverLength();
double cos = SCALE_FACTOR * cwLeverLength* Math.cos(angle_);
double sin = SCALE_FACTOR * cwLeverLength * Math.sin(angle_);
Vector2d attachPt = new Vector2d(STRUT_BASE_X + sin, (int) ( -SCALE_FACTOR * height_) - cos);
g2.drawLine((int) (scale * attachPt.x),
(int) (BASE_Y + scale * attachPt.y),
(int) (scale * attachPt.x),