Mathematical graphics (1.48) cranioid curve skull line

Source: Internet
Author: User

This is a curve that looks like a skull. this curve reminds me of the 3D visualization of medical images when I was studying. the raw data at that time was a brain CT image. in 3D reconstruction, a method is to draw a surface by extracting the contour of each CT skull and listing it layer by layer to generate a 3D mesh. my research tastes heavy. here, I will also transform a layer-by-layer header line into a 3D mesh, that is, a graphic model of the arms.

The equation of the skull line is: (X2 + y2) 2-2 Y2 (Y + x) + A2 (B-1) x2 + (1-A2) x2 = 0.

For more information about related software, see: Mathematical graphics visualization tool. Use script code with custom syntax to generate mathematical graphics. This software is free open source. QQ chat group: 367752815

Header line script code:

#http://www.2dcurves.com/trig/trigcr.htmlvertices = 1000t = from (0) to (2*PI)a = 2b = 0.5r = sin(t) + a*sqrt(1 - b*cos(t)*cos(t))x = r*cos(t)y = r*sin(t)

Surface:

vertices = D1:360 D2:32u = from (0) to (2*PI) D1v = from (0) to 1 D2a = 2r = sin(u) + a*sqrt(1 - v*cos(u)*cos(u))x = r*cos(u)y = r*sin(u)

Mesh:

vertices = D1:50 D2:50u = from (0) to (2*PI) D1v = from (0) to (PI/2) D2a = 2b = 0.5r = sin(u) + a*sqrt(1 - b*cos(u)*cos(u))r = r*cos(v)x = r*cos(u)y = r*sin(u) - 1.0*cos(v)z = 0.8*a*sin(v)

Mathematical graphics (1.48) cranioid curve skull line

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.