在我的 CS 类的项目中,我应该使用双精度值来缩放 LineSegment 并返回一个新 LineSegment,其起点与旧 LineSegment 的起点相同,但缩放后有一个新的终点。我不确定如何做到这一点。我试图将线段乘以标量,但这不起作用并且给了我一个不兼容的打字错误。这是我的代码。
public class LineSegment {
private final Point start;
private final Point end;
public LineSegment(Point start, Point end) {
this.start = start;
this.end = end;
}
public double slope() {
return ((end.getY()-start.getY())/(end.getX()-start.getX()));
}
public double yIntercept() {
return (start.getY()-(this.slope()*start.getX()));
}
public Point getStart() {
return this.start;
}
public Point getEnd() {
return this.end;
}
public double length() {
return (Math.sqrt(Math.pow((end.getX()-start.getX()),2) + Math.pow((end.getY()-start.getY()),2)));
}
public LineSegment scaleByFactor(double scalar) {
return null;
}
@Override
public String toString() {
return ("y = " + this.slope() + "x +" + this.yIntercept());
}
}