本文整理汇总了C#中Line.YZIntercept方法的典型用法代码示例。如果您正苦于以下问题:C# Line.YZIntercept方法的具体用法?C# Line.YZIntercept怎么用?C# Line.YZIntercept使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Line
的用法示例。
在下文中一共展示了Line.YZIntercept方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Line_YZIntercept
public void Line_YZIntercept()
{
Line line1 = new Line(Point.MakePointWithInches(2, 2, 2), Point.MakePointWithInches(4, 3, 7)); //intersects at 0, 1, -3
Line line2 = new Line(Point.MakePointWithInches(6, 0, 0), Point.MakePointWithInches(-6, 3, -1)); //intersects at 0, 1.5, -0.5
Line line3 = new Line(Point.MakePointWithInches(1, 1, 5), Point.MakePointWithInches(2, 2, 4)); //intersects at 0, 0, 6
Line line4 = new Line(Point.MakePointWithInches(2, 1, 1), Point.MakePointWithInches(3, 2, 2)); //intersects at 0, -1, -1
Line line5 = new Line(Point.MakePointWithInches(4, 2, 2), Point.MakePointWithInches(4, 2, 1)); //doesnt intersect
Point intercept1 = line1.YZIntercept();
Point intercept2 = line2.YZIntercept();
Point intercept3 = line3.YZIntercept();
Point intercept4 = line4.YZIntercept();
Point intercept5 = line5.YZIntercept();
intercept1.Should().Be(Point.MakePointWithInches(0, 1, -3));
intercept2.Should().Be(Point.MakePointWithInches(0, 1.5, -.5));
intercept3.Should().Be(Point.MakePointWithInches(0, 0, 6));
intercept4.Should().Be(Point.MakePointWithInches(0, -1, -1));
intercept5.Should().Be(null);
}