I have a plane equation given by a point and a normal vector, for example. This plane has to lay between $xyz$ limits, $300<x<2700$, $150<y<1350$, $130<z<1370$. I want to know the intersection between the plane and the cube formed by the limits, so that I can divide every side of the ramaining figure with a given number of points.
2026-02-24 03:01:27.1771902087
Plane clipping by cubic limits
200 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in GEOMETRY
- Point in, on or out of a circle
- Find all the triangles $ABC$ for which the perpendicular line to AB halves a line segment
- How to see line bundle on $\mathbb P^1$ intuitively?
- An underdetermined system derived for rotated coordinate system
- Asymptotes of hyperbola
- Finding the range of product of two distances.
- Constrain coordinates of a point into a circle
- Position of point with respect to hyperbola
- Length of Shadow from a lamp?
- Show that the asymptotes of an hyperbola are its tangents at infinity points
Related Questions in PLANE-CURVES
- Finding a quartic with some prescribed multiplicities
- How to use homogeneous coordinates and the projective plane to study the intersection of two lines
- Suggest parametric equations for a given curve
- Interpolation method that gives the least arc lenght of the curve.
- Tangent plane when gradient is zero
- Show this curve is a closed set in $R^2$ by using the definition
- Let $F(X,Y,Z)=5X^2+3Y^2+8Z^2+6(YZ+ZX+XY)$. Find $(a,b,c) \in \mathbb{Z}^3$ not all divisible by $13$, such that $F(a,b,c)\equiv 0 \pmod{13^2}$.
- Find the equation of the plane which bisects the pair of planes $2x-3y+6z+2=0$ and $2x+y-2z=4$ at acute angles.
- Could anyone suggest me some good references on interpolation that include other mathematical structures than just single variable functions?
- Question on the span of a tangent plane
Related Questions in MESHING
- Plane clipping by cubic limits
- Generating a Quadrilateral Finite Element Mesh Over a Solid Circular Domain
- From a triangulation of a sphere to a 4-regular planar graph in the minimum number of topological changes?
- Checking of Delaunay triangulation in 3D
- Voronoi diagrams and Delaunay triangulations: does every Voronoi cell contain exactly one node of a Delaunay triangle?
- How to detect a hole in the meshed body?
- "Area" vs "Angle" heuristic for triangular mesh vetrex normal calculation
- Mesh a circle with quadrilateral elements
- Conformal map onto a circle, from an identification space composed of five square regions.
- Conformal map from quadrilateral to a sector of a circle.
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
It is especially easy to find the points at which edges of your (axis-parallel) cuboid intersect a given plane. Then the intersection of the cuboid and the plane, if not empty, is the convex hull of these points (where edges intersect the plane).
The reason is that along each edge of axis-parallel cuboid two of the coordinates are constant. Indeed the cuboid has twelve edges, and for each pair of coordinate variables there are four edges along which those two coordinates are unchanging.
To use your example, there are four pairs of vertices which have $x,y$ coordinates that are shared. Take $x=300$ and $y=150$, for example, with endpoints $z=130,1370$. These two points determine an edge parallel to the $z$-axis.
Your equation of the plane "given by a point" $(x_p,y_p,z_p)$ "and a normal vector" $(c_x,c_y,c_z)$ is:
$$ c_x x + c_y y + c_z z = c_x x_p + c_y y_p + c_z z_p $$
If we plug in $x=300$ and $y=150$ to this equation, we find out whether the edge determined by the two vertices sharing those coordinates intersects the plane corresponding to that equation. If $c_z = 0$, then either the plane does not intersect the edge at all, or else the plane contains the edge in its entirety. If $c_z \neq 0$, then the line through the two vertices does intersect the plane in one point, but that point will either have a $z$-coordinate between the limits $z=130,1370$ (hence a point of intersection on the edge), or the point where the line intersects the plane will be outside the specified edge.
There are a number of cases that could result:
(1) The plane does not intersect any edge, which is equivalent to the plane not intersecting the cuboid.
(2) The plane intersects edges only at one vertex of the cuboid, which is equivalent to the plane intersecting the cuboid only in one point.
(3) The plane intersects the cuboid only in the entirety of one and only one edge, which is equivalent to the plane intersecting the cuboid in a line segment.
(4) Otherwise the plane intersects the cuboid in a polygon having between three and six sides. (There are various subcases of this to consider, naturally, but as already stated, the polygon is the convex hull of the collection of intersections of the plane and the various edges.)
Depending on what you intend to do with such a polygon (subdividing its sides?), some additional processing of the corners of the polygon may be necessary, e.g. ordering the corner points as a path around the polygon and computing the lengths of the polygon's sides.