处理:弧代码仅创建圆。如何正确识别起始值和终止值

时间:2019-05-08 15:47:04

标签: java processing trigonometry vector-graphics curve

我需要在此代码中创建一个“弧”。我一直在研究可以成功创建圆的其他代码,但是我不明白如何正确实现起始值和终止值。

基本上,该代码当前仍在创建一个圆圈,我不确定该怎么做。

这是一个较大文件的一部分,但我认为其余的都不相关。让我知道是否应该添加其余部分。

class UIArc{
  float a, b, c, d, start, stop;
  public UIArc(float a, float b, float c, float d, float start, float stop){
    setArc(a, b, c, d, start, stop);
  }
  public UIArc(PVector p1, PVector p2){
    setArc(p1.x, p1.y, p2.x, p2.y, 90, 180);
  }
  void setArc(float a, float b, float c, float d, float start, float stop){
    this.a = min(a, c);
    this.b = min(b, d);
    this.c = max(a, c);
    this.d = max(b, d);
  }
  PVector getCentre(){
    float cx = (this.c - this.a)/2.0;
    float cy = (this.d = this.b)/2.0;
    return new PVector(cx, cy);
  }
  boolean isBetweenInc(float v, float lo, float hi){
    if(v >= lo && v <= hi) return true;
  return false;
  }
  boolean isPointInside(PVector p){
    if(isBetweenInc(p.x, this.a, this.c) && isBetweenInc(p.y, this.b, this.d))return true;
    return false;
  }
  float getWidth(){
    return(this.c - this.a);
  }
  float getHeight(){
    return(this.d - this.b);
  }
}

1 个答案:

答案 0 :(得分:0)

我假设圆弧的角度设置为度:

setArc(p1.x, p1.y, p2.x, p2.y, 90, 180);

但是角度必须以弧度而不是度为单位传递到arc()函数。 使用radians()将度数转换为弧度。

例如

class UIArc{

    // [...]

    void setArc(float a, float b, float c, float d, float start, float stop){
        this.a = min(a, c);
        this.b = min(b, d);
        this.c = max(a, c);
        this.d = max(b, d);
        this.start = start;
        this.stop = stop;
    }

    void draw() {
        arc(this.a, this.b, this.c, this.c,
        radians(this.start), radians(this.stop));
    }
}