Angle.cs 314 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. namespace SketchAssistantWPF
  8. {
  9. public class Angle
  10. {
  11. public Angle(Point p0, Point p1)
  12. {
  13. //TODO: Add angle calculations
  14. }
  15. }
  16. }