A better alternative is to use cubic splines which are piecewise third order polynomials that gives a hell of a lot more control of the curve. http://mathworld.wolfram.com/CubicSpline.html
To use the splines you need to pick the points you wish the curve to pass through and then generate a spline for each set of 3 points. Ideally you would put some smoothness boundary conditions on the splines so that the spline 'pieces' fitted smoothly together. However, this added another level of complexity so I left it to joining them by eye. Here's a first cut at piecing 2 cubic splines together to create one quarter of the board outline. One for each of the short edge, rounded tip , long side (mezzanine) and mid section.


There are a number VBA macro out there that you can just cut and paste into an excel workbook. The one I pulled down could easily be tweaked to spit out the co-efficients so that the whole outline of the board could be accurately described with the collection of 6 co-efficients used to generate the outline. Some of the other things I'll add are calculating the radius of curvature for continuous rockers, determining center rocker lines needed to get the desired concave.
No comments :
Post a Comment