private void Init(double xCord, double yCord, Figurenfarbe farbe) { this.ID = NextID.ToString(); NextID++; this.Lagepunkt.x = xCord; this.Lagepunkt.y = yCord; this.Farbe = farbe; }
public RechtwinkligesDreieck(double xCord, double yCord, Figurenfarbe color, double SeitenlaengeA, double SeitenlaengeB) : base(xCord, yCord, color) { this.SeitenlaengeA = SeitenlaengeA; this.SeitenlaengeB = SeitenlaengeB; }
public Kreis(double xCord, double yCord, Figurenfarbe color, double radius) : base(xCord, yCord, color) { this.Radius = radius; }
public Quadrat(double xCord, double yCord, Figurenfarbe color, double seitenlaenge) : base(xCord, yCord, color) { this.Seitenlaenge = seitenlaenge; }
public Figur(double xCord, double yCord, Figurenfarbe colour) { this.Init(xCord, yCord, colour); }