Example #1
0
    public GameObject CreateDotBetweenLines(Line first, Line second, Transform transform, Material material)
    {
        Vector3 pointBetweenLines = LineEquationAlgorithms.FindLinesIntersection(first, second);

        return(CreateDot(pointBetweenLines, transform, material));
    }