Explain how 2D engineering drawings are produced.

What will be an ideal response?


2D orthographic engineering drawings are a standard means of communication among engineers. In Rhino, you create 2D drawings in two ways: by selecting a 3D object and letting the computer generate the drawing views, and by using the curve tools to construct a drawing from scratch.

Computer Science & Information Technology

You might also like to view...

What would be displayed after line 8 runs?

``` 1 vector vNums; 2 vNums.push_back(10); 3 vNums.push_back(5); 4 vNums.push_back(15); 5 vNums.push_back(25); 6 cout << vNums.size(); 7 vNums.pop_back(); 8 cout << vNums.at(2); 9 vNums.pop_back(); 10 vNums.pop_back(); 11 vNums.pop_back();``` A. 10 B. 5 C. 15 D. 25

Computer Science & Information Technology

The ________ operator is used to test if a field is not empty

Fill in the blank(s) with correct word

Computer Science & Information Technology

________ validation allows you to specify more complex criteria and permits multiple criteria simultaneously

Fill in the blank(s) with correct word

Computer Science & Information Technology

To position a div, the div must have a(n) ____________________ assigned to it.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology