要做到这一点,使用相机的原点和原三角形三角形边分割成若干个子区域,然后检查如果地区符合规定的排序顺序(准备画家算法)。
To do that, use camera origin point and triangle edges to split original triangles into several sub-regions, then check if regions conform to established sort order (prepared for painter's algorithm).
有多少三角形?有四个三角形。
举例来说,三角形带(0,1,2,3)可转换为两个三角形(0,1,2)及(1,2,3)。
For example, the triangle strip (0, 1, 2, 3) will translate to two triangles (0, 1, 2) and (1, 2, 3).
然后用三角形带取代三角形,从而减少索引数量。
Next, you reduce the number of indices by using triangle strips instead of triangles.
第一个例子是默认图片里似乎有两个三角形,但实际上只画了一个三角形。
A first example is the default picture where it might seem that there are two triangles but in fact only one triangle was drawn.
用三个字母来描述一个三角形(如说三角形abc或tri ABC或简单地说abc)。
Identify triangles with three letters (ex., say "triangle ABC" or "tri ABC" or simply "ABC").
如我上面所提到的,我们可以将三角形的类型按照角度或边来分类,在某些情况下,我们提供的三个数值也许不能组成三角形。
As I noted above, we can classify triangle types by angles or sides, and in some instances the three Numbers we supply may not form a valid triangle.
所有美丽的事物所共有的是美的理念或者定义,所有三角形所共有的是三角形的理念或定义,如此类推。
What all beautiful things have in common is the idea or definition of beauty, what all triangles have in common is the idea or definition of a triangle, and so forth.
按惯例,由三角形带中的第一个三角形定义其环绕。
The convention is that a strip's first triangle defines its winding.
在平面着色渲染模式下,可用三角形的第三个顶点颜色为整个三角形着色。
In flat-shading mode, you use the color of a triangle's third vertex across the whole triangle.
当我将一个三角形带环绕在清单1实现的整个立方体上时,首先从一个逆时针方向环绕的三角形(0,1,2)开始。
When I wrapped one triangle strip around the whole cube in Listing 1, I started with a triangle that is wound counter-clockwise (0, 1, 2).
通过使用三角形带,新的三角形可重用最后两个索引。
With a triangle strip, new triangles reuse the preceding triangle's last two indices.
任何多边形都可定义为一组三角形的集合,因此三角形在3d实现中应用十分广泛。
Triangles are popular with 3d implementations because you can define any polygon as a set of triangles.
你可以使用初等的几何知识例如三角形的三个内角各为180度和三角形全等的规则(边-角-边等)。
You may only use elementary geometry, such as the fact that the angles of a triangle add up to 180 degrees and the basic congruent triangle rules (side-angle-side, etc.).
当设计这个测试时,您会瞬间看到三类输入输出数据:不等边三角形,等边三角形或者等腰三角形。
When designing tests for this, you immediately see three classes of input and output values: scalene, equilateral, and isosceles.
如果您用三角形的角度进行测试,那么可能的类型是直角、锐角、钝角或等角三角形。
If you test by the triangle's angles, possible types are right, acute, obtuse, or equiangular.
而在三角形上端,覆盖有与三角形,完美吻合的装置。
And on top of that are devices which have been specially designed to perfectly fit this triangle.
大部分人都会说这些点不是随机排列的,而是组成了个三角形,尽管组成三角形的线和角并不存在。
The vast majority of people would say that these dots aren't random and form a triangle even though the lines and angles necessary for a triangle to exist aren't really there.
在三角形外部画的一个圆,包含了三角形的三个顶点。
A circle that is drawn around the outside of a triangle and contains all the vertices of the triangle.
例如,(0,1,2)按逆时针方向定义第1个三角形的顶点,而第二个三角形为(1,2,3)是按照顺时针方向定义的。
For example, (0, 1, 2) defines the first triangle's vertices counter-clockwise; the second triangle (1, 2, 3) is defined clockwise.
等边三角形三边相等三内角相等。直角三角形有一个角等于90度。
An equilateral triangle has all sides equal and all angles equal. A right triangle has one Angle equal to 90 degrees.
例如,三角形的三条边分别是2,2,2和3,3,3,它们都是等边三角形。
For example, the triangle values 2, 2, 2 and 3, 3, 3 are both equilateral.
三角形: 三角形内角和为180度.
Triangles: The sum of the interior angles of a triangle is 180 degrees.
平面上有一个三角形,用两个向量描述,记作A、B,怎样求三角形的面积?
Let's start with a triangle in the plane Well, then we need two vectors to describe it say A and B here. How do we find the area of a triangle?
三角形条带是一系列连接的三角形。
勾股定理(Pythagorean Theorem)告诉我们边长为3、4和5的三角形是直角三角形,因此可以使用边长3、4和5来简单地测试。
The Pythagorean Theorem tells us that a 3-4-5 triangle is a right triangle, so we can simply test for sides of 3, 4, and 5.
"三角形程序从一个穿孔卡片中读取三个数据,并将它们作为三角形的三个边。
quot;The triangle program reads three numbers from a punch card... and interprets them as the sides of a triangle.
按照惯例,通常使用向右的三角形取代closed,向下的三角形取代open;也可使用加减号,加号表示closed,减号表示open。
By convention, these graphics are usually triangles that point to the right for closed or down for open; or plus and minus signs, where plus means closed and minus means open.
这枚钻戒镶嵌有一颗重达10.95克拉的三角形鲜彩蓝钻石和一颗重约9.87克拉的三角形钻石,于1972年面世。
The ring is set with a triangular-cut fancy vivid blue diamond, weighing 10.95 carats, and a triangular-cut diamond, weighing 9.87 carats, and dates from 1972.
当实现对等边三角形和等腰三角形的测试时,我认识到我只用了delta值来用于直角三角形的计算。
As I implemented the tests for equilateral and isosceles triangles, I realized that I was using only the delta value for calculations in right triangles.
应用推荐