コード例 #1
0
 internal Point PointOnCircumference(Vector directionFromCenter)
 {
     var r = this.RadiusInDirection(directionFromCenter);
     return this.CenterPoint + r * directionFromCenter.Normalized();
 }
コード例 #2
0
ファイル: Ray.cs プロジェクト: JohanLarsson/Gu.Wpf.Geometry
 internal Ray(Point point, Vector direction)
 {
     this.Point = point;
     this.Direction = direction.Normalized();
 }