本文整理汇总了C#中Plane.getInsertValue方法的典型用法代码示例。如果您正苦于以下问题:C# Plane.getInsertValue方法的具体用法?C# Plane.getInsertValue怎么用?C# Plane.getInsertValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Plane
的用法示例。
在下文中一共展示了Plane.getInsertValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: cullLine
private List<Vertex> cullLine(Vertex p1, Vertex p2, Plane p)
{
//List<Vertex> list = getPreCullList(p1, p2, p);
//if (list != null)
// return list;
List<Vertex> list = new List<Vertex>();
float value1 = p.getDotValue(p1.pos);
float value2 = p.getDotValue(p2.pos);
float temp = value1 * value2;
if (temp >= 0)
{
if (value1>0 && value2 > 0)
{
list.Add(p1);
list.Add(p2);
}
else if (value1>0 && value2==0 || value2>0 && value1==0)
{
list.Add(p1);
list.Add(p2);
}
}
else
{
Vertex v = p.getInsertValue(p1, p2);
if (value1 > 0)
{
list.Add(p1);
list.Add(v);
}
else
{
list.Add(v);
list.Add(p2);
}
}
CullLine cullLine = new CullLine();
cullLine.inputList.Add(p1);
cullLine.inputList.Add(p2);
cullLine.plane = p;
cullLine.outPutList = list;
string cacheString = p1.pos.ToString() + p2.pos.ToString() + p.normal.ToString()+p.point.ToString();
cullLineList[cacheString] = cullLine;
return list;
}