I'm trying to convert the python algorithm (here: Extending a line segment to fit into a bounding box) to my iPhone application.. but it only works when my startPoint.x > then endPointx
What is to change here? I don't get it..
If I draw a line from top-left to bottom right it works! But If I draw a line from top-right to bottom-left it fails. So it only works in one direction.. I think I have to change some variables if its from right to left
MIN is (0,0) and MAX depends on the device but for iPhone Retina (300,568)
- (NSMutableArray *) extendAlgorithm:(CGPoint)start withEnd:(CGPoint)end withBorderMin:(CGPoint)min andBorderMax:(CGPoint)max {
int x1 = (int) start.x; int y1 = (int) start.y;
int x2 = (int) end.x; int y2 = (int) end.y;
int xmin = (int) min.x; int ymin = (int) min.y;
int xmax = (int) max.x; int ymax = (int) max.y;
if(y1 == y2) {
return [[NSMutableArray alloc] initWithObjects:
[NSNumber numberWithDouble:xmin],
[NSNumber numberWithDouble:y1],
[NSNumber numberWithDouble:xmax],
[NSNumber numberWithDouble:y1],
nil];
}
if(x1 == x2) {
return [[NSMutableArray alloc] initWithObjects:
[NSNumber numberWithDouble:x1],
[NSNumber numberWithDouble:ymin],
[NSNumber numberWithDouble:x1],
[NSNumber numberWithDouble:ymax],
nil];
}
double y_for_xmin = y1 + (y2 - y1) * (xmin - x1) / (x2 - x1);
double y_for_xmax = y1 + (y2 - y1) * (xmax - x1) / (x2 - x1);
double x_for_ymin = x1 + (x2 - x1) * (ymin - y1) / (y2 - y1);
double x_for_ymax = x1 + (x2 - x1) * (ymax - y1) / (y2 - y1);
if(ymin <= y_for_xmin <= ymax) {
if(xmin <= x_for_ymax <= xmax) {
return [[NSMutableArray alloc] initWithObjects:
[NSNumber numberWithDouble:xmin],
[NSNumber numberWithDouble:y_for_xmin],
[NSNumber numberWithDouble:x_for_ymax],
[NSNumber numberWithDouble:ymax],
nil];
}
if(xmin <= x_for_ymin <= xmax) {
return [[NSMutableArray alloc] initWithObjects:
[NSNumber numberWithDouble:xmin],
[NSNumber numberWithDouble:y_for_xmin],
[NSNumber numberWithDouble:x_for_ymin],
[NSNumber numberWithDouble:ymin],
nil];
}
}
if(ymin <= y_for_xmax <= ymax) {
if(xmin <= x_for_ymin <= xmax) {
return [[NSMutableArray alloc] initWithObjects:
[NSNumber numberWithDouble:x_for_ymin],
[NSNumber numberWithDouble:ymin],
[NSNumber numberWithDouble:xmax],
[NSNumber numberWithDouble:y_for_xmax],
nil];
}
if(xmin <= x_for_ymax <= xmax) {
return [[NSMutableArray alloc] initWithObjects:
[NSNumber numberWithDouble:x_for_ymax],
[NSNumber numberWithDouble:ymax],
[NSNumber numberWithDouble:xmax],
[NSNumber numberWithDouble:y_for_xmax],
nil];
}
}
return nil;
}