Skip to main content

Questions tagged [computational-geometry]

The study of computer algorithms which admit geometric descriptions, and geometric problems arising in association with such algorithms. The two major classes of problems are (a) efficient design of algorithms and data classes using geometric concepts and (b) representation and modelling of curves and surfaces.

Filter by
Sorted by
Tagged with
0 votes
1 answer
56 views

The algorithm in question is from this webpage. The complete algorithm from this webpage is as follows: ...
lokit khemka's user avatar
4 votes
0 answers
83 views

I have a set of $n$ points in the plane and I want to find the smallest circumscribed circle that contains them. By circumscribed I mean that the circle must pass through $3$ of the points. Brute ...
user avatar
3 votes
0 answers
83 views

Let $D\subset\mathbb{R}^{2}$ be a bounded, open, connected polygonal domain whose boundary decomposes (unknown to the observer) as a disjoint union $$ \partial D \;=\; U \,\sqcup\, W $$ where $U$ is ...
user avatar
3 votes
1 answer
98 views

I am working on some problem on toric arrangements at the crossroad between topology, combinatorics and algebraic geometry. $\textbf{Setting}$ Let $m,n\geq1$ and let \begin{equation*}\mathcal{S}=\left\...
snaleimath's user avatar
1 vote
2 answers
101 views

I am looking for a way to divide a 2D polygon (possibly with a complex shape, like an "H". These are actually floor layouts of buildings) into several connected sub-regions, where each ...
Rojj's user avatar
  • 119
1 vote
0 answers
45 views

When a polygon is convex, its medial axis a.k.a. topological skeleton is particularly simple: there are no curved parts; it looks like an undirected tree whose internal nodes are all those points in ...
Don Hatch's user avatar
  • 1,363
0 votes
1 answer
95 views

Given a cubic Bézier curve with control points P0, P1, P2, P3, is there a way to determine whether it approximates a circular arc using only those four points — without evaluating the curve at ...
jwezorek's user avatar
  • 279
0 votes
2 answers
111 views

I have four 3D points A , B , C , D that define a quadrilateral (assumed to be convex) on the surface of a unit sphere (i.e., all points lie on the sphere centered at the origin). These points define ...
BRUCE's user avatar
  • 105
2 votes
0 answers
30 views

I am working on a very particular problem in which I have obtained a collection of points in a high-dimensional space. What I know a priori is that each point has integer-valued coordinates, these ...
Sean Fancher's user avatar
0 votes
0 answers
66 views

This is based on Förstner and Wrobel's Photogrammatic Computer Vision. For inhomogeneous coordinates in $\mathbb{R}^2$ using $\vec{x}_0\ne\vec{0}$ and a direction vector $\vec{d}$ we can express a ...
Steven Thomas Hatton's user avatar
1 vote
0 answers
49 views

I'm interested in the following problem: On the plane, given $n$ points in general position, select $k$ such that for each point selected, the (Euclidean) distance to the nearest point in the ...
n00b's user avatar
  • 279
0 votes
1 answer
109 views

I am trying to determine the envelope of a family of circles defined by: $$\left(x-k\right)^2+\left(y-k^2\right)^2=4\left|k\right|,k\in\mathbb{Z}^*$$ I have searched MSE and found a similar discussion ...
AuroraAeon's user avatar
0 votes
1 answer
56 views

I'm reading a slice of Preparata and Shamos's book on Computational Geometry. I'm enjoying it so far, and I feel it's pretty well-written. However, some of the language is unusual and can't be found ...
Nate's user avatar
  • 1,869
1 vote
1 answer
89 views

In 3D space, we define the integer points as those whose three coordinates are all integers. What is the maximum possible volume of the cube which doesn't contain any integer point? https://www....
Jacky Wang's user avatar
2 votes
0 answers
55 views

I have a commutative $k$-algebra which is given by an explicit presentation $R = k[x_1,\dots,x_n]/(f)$. I have a subalgebra $S \subset R$ which I know generators for: let's call them $a_1,\dots,a_m \...
peco's user avatar
  • 434
3 votes
2 answers
291 views

The book by O'Rourke, titled: Computational Geometry in C, Second Edition; states on page #64: A convex combination of points $x_1,\cdots, x_k$ is a sum of the form $\alpha_1x_1+\cdots+ \alpha_kx_k$ ...
jiten's user avatar
  • 4,972
0 votes
0 answers
50 views

I wonder if there are analytical or numerical methods that can achieve the light ray tracing on curved surfaces filled with in-homogeneous medium. Specifically, I want to solve the following Hamilton’...
Xiaoyu Zhao's user avatar
0 votes
1 answer
131 views

I have a set of line segments that are defined as a connection between two arbitrary points (e.g. $(x_1,y_1)$ and $(x_2,y_2)$). I need to find a line $y=mx+b$ that intersects all the line segments in ...
user1468796's user avatar
2 votes
1 answer
72 views

I want the coordinates of the quadrilateral formed from two intersection line segments, where the opposite sides of the quadrilateral should be parallel to one of the intersecting line segments. For ...
Basavaraj Kittali's user avatar
0 votes
0 answers
50 views

From [1] It is easily seen that the convex hull of the union of $A^D$ and $B^D$ is the dual of the intersection of $A$ and $B$. where the definition of dual in [1] is: The dual $A^D$ of $A$ is ...
Stephen Webb's user avatar
0 votes
2 answers
100 views

The primal configuration of point $p=(a, b)$ implies non-vertical line $p^*=\{(x,y)|y=ax-b\}$ is dual configuration. And the primal configuration of non-vertical line $\ell=\{(x,y)|y=mx-n\}$ implies ...
user avatar
0 votes
1 answer
79 views

I'm trying to troubleshoot my implementation of an Infinite Series algorithm to calculate the perimeter of an ellipse. I'm sorry I don't have the expertise to express it in, what appears to be a ...
bielawski's user avatar
  • 229
9 votes
2 answers
568 views

I'm not a mathematician. I'm just doing 3D modeling and can't find an equation to solve this problem. In openscad, an ellipse is created by scaling a circle. So this code creates an ellipse with a ...
bielawski's user avatar
  • 229
20 votes
0 answers
1k views

Now cross-posted to MathOverflow (link). Question: There is an equilateral triangle. Two players alternate turns placing non-overlapping equilateral triangles of the same size that touch the original ...
Benjamin Dickman's user avatar
1 vote
1 answer
50 views

Is there an algorithm to find if the intersection of two convex sets is empty or not. The projection onto convex method (POCS) and similar methods finds a point in the intersection, but will they ...
user221985's user avatar

1
2 3 4 5
26