Quellcodebibliothek Statistik Leitseite    (Firefox Browser Version 136.0.1©)  

Quelle  Waypoint.java

  Sprache: JAVA
 

package gui;

import java.awt.Point;

public class Waypoint {

 boolean stop;
 String name;
 Point point;
 
 public Waypoint(String wpName, Point location) {
  this(wpName, location, false);
 }
 
 public Waypoint(String wpName, Point location, boolean isStop) {
  
  name = wpName;
  stop = isStop;
  point = location;
 }
 
 public int X(){
  return (int) point.getX();
 }
 
 public int Y(){
  return (int) point.getY();
 }
 
 public Point point(){
  return  point;
 }
 
 public String Name(){
  return name;
 }
 
 public boolean IsStop()
 {
  return stop;
 }
 
 @Override
 public String toString() {
  return "<" + name + ">";
 }
}

Messung V0.5 in Prozent
C=88 H=95 G=91

¤ Dauer der Verarbeitung: 0.8 Sekunden  (vorverarbeitet am  2026-06-17) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.