Пример #1
0
 @Override
 public int getConstructionIndex() {
   if (algoAnglePoly != null) {
     return algoAnglePoly.getConstructionIndex();
   }
   return super.getConstructionIndex();
 }
Пример #2
0
  @Override
  public final String toString() {

    // Michael Borcherds 2008-03-30
    // simplified to allow better Chinese translation
    if (algoAnglePoly != null) {
      return app.getPlain(
          "AngleBetweenABCofD",
          An.getLabel(),
          Bn.getLabel(),
          Cn.getLabel(),
          algoAnglePoly.getPolygon().getNameDescription());
    }
    return app.getPlain("AngleBetweenABC", An.getLabel(), Bn.getLabel(), Cn.getLabel());
  }
Пример #3
0
 @Override
 public void remove() {
   if (algoAnglePoly != null) algoAnglePoly.remove();
   else super.remove();
 }