Tagged Questions
7
votes
7answers
172 views
How to calculate the nearest point of a line and curve? .. or curve and curve?
Given the points of a line and a quadratic bezier curve, how do you calculate their nearest point?
6
votes
3answers
485 views
How to calculate point along a curve?
I am writing a custom animation for wpf and as a non math guy I have a couple questions...
If I am given two Point3D's, the From and To, and assuming the origin is at 0,0,0 how do I calculate a curve ...
4
votes
2answers
148 views
Collapsing a 10 period curve to 4 periods
I have a 10 period cost curve table below. How do I programmatically collapse/condense/shrink this to 4 periods. I'm using VBA but I should be able to follow other languages. The routine should ...
3
votes
1answer
271 views
Draw a quadratic bezier curve through three given points
I have three points in 2D and I want to draw a quadratic bezier curve passing through them. How do I calculate the middle control point (x1 and y1 as in quadTo)? I know linear algebra from college but ...
3
votes
7answers
692 views
Most efficient way to find min and max of a sin/cos curve in C#
Background: I have a function in my program that takes a set of points and finds the minimum and maximum on the curve generated by those points. The thing is it is incredibly slow as it uses a while ...
2
votes
2answers
62 views
best platform to draw curves and create JPEGs
i have an equation of a curve that i need to draw like:
((X^z)-1)/z = y
does anyone know how i can draw this curve and save it as an image using python or .net?
2
votes
1answer
106 views
How do I get points on a curve in PHP with log()?
I have a graph I am trying to replicate:
I have the following PHP code:
$sale_price = 25000;
$future_val = 5000;
$term = 60;
$x = $sale_price / $future_val;
$pts = array();
$pts[] = ...
2
votes
3answers
328 views
Compute the 'elbow' for a curve automatically and mathematically
One example for curve is shown as below. The elbow point might be x=3 or 4.
How to compute the elbow for a curve automatically and mathematically?
2
votes
2answers
315 views
Curve Trajectory object orientation
I have a spaceship in a 3D environnement. I drew a B-Spline curve using control points (converted to a Bezier curve to be able to draw it). Each time the draw event is called, the ship is at the point ...
1
vote
0answers
44 views
How to remove a node of a Bezier curve to the shape of the curve has not changed
I need a help in writing the algorithm remove nodes Bezier curve. Using cubic Bezier curves, there are two curves (P0, P1, P2, P3 and Q0, Q1, Q2, Q3), which have a common point (P3=Q0). Need to get a ...
1
vote
2answers
40 views
Influence a linear percentage calculation to rise quicker at the beginning?
I'm doing a really basic progress percentage calculation, at the moment it's a linear calculation so:
0 -> 0%
max/10 -> 10%
max -> 100%
The calculation is simply like this:
$max = 4000;
...
1
vote
4answers
217 views
Getting curve details from points
I have a List of 2D points. What's an efficient way of iterating through the points in order to determine whether the list of points are in a straight line, or curved (and to what degree). I'd like to ...
1
vote
1answer
1k views
curveTo finding the curve point dynamically
My math knowledge has never been very broad, so this maybe a simple question but I'm not really sure.
Basically I'm using the curveTo function to draw some lines for flight paths, what I'm not sure ...
1
vote
2answers
387 views
Curve Fitting
Given two points say (1,2,3) and (4,7,8). The endpoint tangents at these points are also given as inputs say pi/4 and -pi/2 respectively. How to fit a helix of arc length 2 between these points?
How ...
0
votes
2answers
50 views
Intersection between two curves
I need to obtain the intersection of two curves. The problem I'm facing can be stated in the following way:
Given two curves C1 and C2, defined by N1 and N2 points connected by straight lines, obtain ...
0
votes
1answer
528 views
Quadratic Bezier Curve: Calculate Point
Hey,
I'd like to calculate a point on a quadratic curve. To use it with the canvas element of html5.
When I use the quadraticCurveTo() Function in JavaScript, I have a source point, a target point ...
0
votes
1answer
180 views
How to calculate the curve of a linear floating point number in Javascript?
How do I calculate a curve of a linear floating point number (0 to 1) and get another floating point number as a result? What I want is up until the half (0..0.5), to be inversed logarithmic and high ...
-2
votes
3answers
127 views
How to check whether the curve is C1 class?
How to check whether the curve is C1 class or C2 class.
Example:
x = [1,2,3,4,5,6,7,8,9 ......1500]
y = [0.56, 1, 12, 41, 01. ....... 11, 0.11, 3, 23, 95]
This curve is C1 class "function" ?
...