Tagged Questions

A triangle is a three-sided polygon.

learn more… | top users | synonyms

22
votes
10answers
2k views

circles and triangles problem

I have an interesting problem here I've been trying to solve for the last little while: I have 3 circles on a 2D xy plane, each with the same known radius. I know the coordinates of each of the three ...
10
votes
4answers
514 views

Check if three circles fit inside a triangle

I have thought some time about writing a program that tells me if three circles with given diameters can fit inside a triangle with given side lengths without overlapping (touching is ok) each other. ...
5
votes
2answers
394 views

How would one create a triangle container for an image (x-browser)

How would I create a DIV containing an IMG where the DIV cuts the image into a triangle, thereby displaying only part of the image though a triangle. so.. <div> <img src='some_image' ...
5
votes
1answer
118 views

Why are triangles being clipped in this mesh?

I have the following code: #include <irrlicht.h> using namespace irr; using namespace core; using namespace scene; using namespace video; using namespace io; using namespace gui; int ...
5
votes
4answers
435 views

Computational geometry, tetrahedron signed volume

I'm not sure if this is the right place to ask, but here goes... Short version: I'm trying to compute the orientation of a triangle on a plane, formed by the intersection of 3 edges, without ...
5
votes
4answers
3k views

How to calculate the volume of a 3D mesh object the surface of which is made up triangles

I want to calculate the volume of a 3D mesh object having a surface made up triangles. Could you help me. Thank in advance Best Regards. Can
4
votes
3answers
2k views

Fastest way to compute point to triangle distance in 3D?

One obvious method for computing the minimum distance from a point to a 3D triangle is to project the point onto the plane of the triangle, determine the barycentric coordinates of the resulting ...
4
votes
1answer
664 views

Detection of Triangle Collision in 2D Space

How can I programatically detect whether or not two triangles touch each other, given their vertices on a 2D coordinate plane? This includes touching points or edges, as well as if one triangle is ...
4
votes
2answers
564 views

Normal of an equilateral triangle that has been arbitrarily transformed in 3D space

I have an issue that I can't quite seem to find a starting point on; I'm not even sure I can describe it well enough to get an answer. I need to find the normal of an equilateral triangle in 3D ...
3
votes
5answers
83 views

Down facing triangle… but wait… what is this… with borders?

I'm using the cool CSS here: http://css-tricks.com/snippets/css/css-triangle/ I'm creating a simple triangle for something I'll be perfecting with some jQuery. Problem is, I need the triangle to ...
3
votes
3answers
163 views

Convert polygon to triangles

In order to create a VBO in OpenGl, I need to convert polygons to triangles. Is there an example of script/code somewhere that would describe this ? I would need something robust for convex and ...
3
votes
3answers
746 views

Generate a plane with triangle strips

What would be the best algorithm to generate a list of vertices to draw a plane using triangle strips? I'm looking for a function which receives the plane's width and height and returns a float array ...
3
votes
1answer
201 views

How do I break a non-straight line into even segments?

I have a non-straight line defined by a series of x, y coordinate points. I could draw a straight line on-screen directly between these points with no problem. Unfortunately, I have to draw the line ...
3
votes
2answers
509 views

Calculate if two 3D triangles are on the same plane

For a 3D game engine I'm working on I need to calculate if two 3D triangles are on the same plane to display it accordingly. How do I calculate the angles of a triangle in 3D space? Would ...
3
votes
2answers
2k views

How do I draw a texture-mapped triangle in MATLAB?

I have a triangle in (u,v) coordinates in an image. I would like to draw this triangle at 3D coordinates (X,Y,Z) texture-mapped with the triangle in the image. Here, u,v,X,Y,Z are all vectors with ...
3
votes
6answers
2k views

Java: calculating area of a triangle

import java.lang.Math; import java.awt.* public class Triangle implements Shape { java.awt.Point a; java.awt.Point b; java.awt.Point c; public Triangle(java.awt.Point a, ...
3
votes
4answers
350 views

Creating a surface of triangles from a set of 2D points

I have a set of points and I need to convert the set to (non-overlapping) triangles (or a big polygon if equivalent)... The application: I have a list of locations (latitude,longitude) from a ...
3
votes
1answer
255 views

What controls the behavior of OpenGL when drawing triangle strips?

So I do know how to draw multiple triangles using glBegin(GL_TRIANGLE_STRIPS). What I want to understand is how OpenGL decides which vertex (out of the first three provided) to use as the starting ...
3
votes
3answers
2k views

OpenGL: Fastest way to draw a mixture of triangles and quads?

I have a mesh data structure with polygons that can be either triangles and quads. What is the fastest way to draw this using OpenGL? The slow way is to iterate over the structure and for each ...
3
votes
4answers
5k views

finding center of 2D triangle

(Yes, unfortunately, this is a homework question) I've been given a struct for a 2D triangle with x and y coordinates, a rotation variable, and so on. From the point created by those x and y ...
2
votes
4answers
59 views

Getting a list of locations within a triangle in the form of x,y positions

Let's say I have a triangle given by the three integer vertices (x1,y1), (x2,y2) and (x3,y3). What sort of algorithm can I use to return a comprehensive list of ALL (x,y) integer pairs that lie inside ...
2
votes
2answers
62 views

Pascal's triangle 2d array - formatting printed output

I have a small assignment where I have to use a 2d array to produce Pascal's triangle. Here is my code, and it works. there is an extra credit opportunity if I display the triangle like so: ...
2
votes
3answers
76 views

Linear Interpolation to find coord in triangle

Suppose you have the following three points A, B, and C as shown in the following picture: The points are always sorted according to their vertical offset, so the top most point is always A. ...
2
votes
1answer
178 views

Find triangle in the graph

I have some problem with home work. So, I have some graph like this graph from wiki and i want to find triangle (1->2->5). And i have no idea how to find this. In my case, i defined my graph: ...
2
votes
1answer
228 views

Special triangle possible with just CSS (so I can change the border color)?

I have a sort of speech bubble: http://screencast.com/t/xy3xPHYlM with rounded corners and a triangle on the right of left (depending on :nth-child(odd/even)). The border and rounded corners are no ...
2
votes
2answers
86 views

Render of css borders

Im trying to build arrow icon with css triangles method - http://css-tricks.com/snippets/css/css-triangle/ I built this one in Chrome v14 - OSX, and it works fine: ...
2
votes
6answers
223 views

How do I make a triangular div in CSS? [closed]

Possible Duplicate: How does this CSS triangle shape work? How do you make a div in the shape of a triangle?
2
votes
2answers
50 views

triangle points around a point

I have given the coordinates of 1000 triangles on a plane (triangle number (T0001-T1000) and its coordinates(x1,y1) (x2,y2),(x3,y3)). Now, for a given point P(x,y), I need to find a triangle which ...
2
votes
1answer
498 views

given a triangle and a segment, find third point which would create a similar triangle [closed]

I've seen similar questions asked, but I find the explanations still somewhat difficult. I have a triangle with its 3 vertices given in (x,y). I am also given a segment of two points. I want to place ...
2
votes
1answer
175 views

Dividing a square by the diagonals and making each resulting triangle a separate button

Suppose I have a square and divide it by the diagonals resulting in four identical triangles (apart from their rotation). Using CSS/HTML/Javascript, what is the best way to turn each triangle into a ...
2
votes
1answer
422 views

Where to get pseudo code algorithm for projecting a RGB parallelogram into an RGB triangle

What would be pseudo code algorithm fo projecting a parallelogram (2d array of (RGB) points) into a triangle (2d array of (RGB) points) (in my particular case a Rectangle into a Right Triangle with ...
2
votes
2answers
105 views

creating many triangles with different points

Hi I have a question that in this link you will see pointInTriangle Method with 4 parameters .I want to know that how can I send those 3 last parameters to this method when we have n points? Is there ...
2
votes
5answers
503 views

Finding Whether A Point is Within a Right-Angle Triangle

I've always wondered the easiest way to figure out whether or not a point lies within a triangle, or in this instance, a rectangle cut into half diagonally. Let's say I have a rectangle that is 64x64 ...
2
votes
3answers
316 views

C++ - 3d geometry question

Right my own 3d engine (which I'm currently developing) has a very limited abilities in terms of geometry rendering and I want to expand it. What I'm interested in is how-it-should be done in terms ...
2
votes
1answer
366 views

Testing if a line has a point within a triangle

How can I test whether a line has a point that lies within (not on the edge of) a triangle. (All in 2D). Currently I'm thinking I'll do this: Define the line, and each side of the triangle as ...
2
votes
2answers
357 views

Accessing vertices in the triangle++ (delaunay/voronoi triangulation) Wrapper class

I'm using the triangle++ wrapper class from http://www.compgeom.com/~piyush/scripts/triangle/ to triangulate a point cloud for visulaizing with OpenGL. I was able to put in my points and caluculate ...
2
votes
5answers
917 views

How to Print a Triangle using single variable and in a single loop?

A colleague ask me to print a triangle (of any shape) using a single variable and in a single loop. I do it this way: Program.cs using System; using System.Collections.Generic; using System.Linq; ...
2
votes
4answers
2k views

How to find coordinates of a 2d equilateral triangle in C?

I have the coordinates (x,y) of 2 points. I want to build the third point so that these 3 points make an equilateral triangle. How can I calculate the third point? Thank you
1
vote
1answer
28 views

Basic LWJGL triangle w/ OpenGL

I'm trying to get a simple triangle drawn in Java using LWJGL. I've had a little experience with OpenGL (in C++), but that was also a while ago. I'm trying to get a simple triangle up, each with a ...
1
vote
1answer
68 views

Handling Triangle Solving in Ruby

What is the best way to construct a program in Ruby that solves for the different types of triangles: specifically AAS, ASA, SAS, SSA, and SSS triangles. There are only three different solutions: ...
1
vote
2answers
52 views

Algorithm to enlarge/scale/inflate/enbiggen a triangle

I'm looking for an algorithm to make a triangle larger by a given scaling factor. If I multiply the 3 coordinates by the scaling factor, and the triangle is not centred on the origin, then the ...
1
vote
2answers
166 views

Using F# to calculate triangle

trying to write a program to calculate triangles. Can anyone give me a short code in F# sharp for this calculation? this is what I have so far, but I'm not convinced it's the best way: let area a ...
1
vote
1answer
220 views

C++ triangle rasterization

I'm trying to fix this triangle rasterizer for the last couple of hours, but unfortunately not managed to make it work correctly. for some reason it only draws half of the triangles. void ...
1
vote
2answers
196 views

OpenGL ES rendering triangle mesh - Black dots in iPhone and perfect image in simulator

This is not a texture related problem as described in other StackOverflow questions: Rendering to texture on iOS... My Redraw loop: glClearColor(0.0f, 0.0f, 0.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT ...
1
vote
1answer
257 views

How do I make a CSS triangle with smooth edges?

I have a triangle (JSFiddle) using this CSS: .triangle { width: 0; height: 0; border-top: 0; border-bottom: 30px solid #666699; border-left: 20px solid transparent; ...
1
vote
4answers
355 views

C# Rotate a Polygon(Triangle)

I have a method which is to draw a polygon, and then rotate that polygon 90 degrees to the right so that its original top point is now pointing towards the right. This is the code to draw the ...
1
vote
5answers
210 views

Ruby -If-Else Statement (Triangle Test)

The question is Create a function that takes three numbers as input and returns true or false depending on whether those three numbers can form a triangle. Three numbers can form a triangle if the sum ...
1
vote
1answer
232 views

OpenGL: Drawing Quad - Color fading issue

I'm trying to draw a white quad on Android with OpenGL-ES and the colors are fading. See picture: http://img88.imageshack.us/img88/2787/tempew.png I have tried it with int numVertices = 4; as well, ...
1
vote
2answers
893 views

Find Circum Center of Three point of Triangle [Not using Compass]

I am trying to find circumcenter of Given Three point of Triangle…….. NOTE: all these three points are with X,Y and Z Co-Ordinate Means points are in 3D I know that the circumcenter is the point ...
1
vote
2answers
213 views

Slicing UIImage into triangles in iPhone app

I am working on a iPhone app where I take a picture with the camera. Hereafter it should be possible to slice the image in various shapes - most important triangles. Can anyone give me a point in the ...

1 2 3