Esempio n. 1
0
 /**
  * Find out if the apexes property has been defined.
  *
  * @return True if the apexes property has been defined, false otherwise.
  */
 public boolean isApexesDefined() {
   return apexes.isDefined();
 }
Esempio n. 2
0
 /** Undefine the apexes property. */
 public void undefineApexes() {
   apexes.undefine();
 }
Esempio n. 3
0
 /**
  * Get the apexes of this area.
  *
  * @return The apexes.
  */
 @Override
 public int[] getApexes() {
   return apexes.getValue();
 }