working-3d-anatomy.html
4.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- CUSTOM CSS -->
<link rel="stylesheet" href="css/custom.css">
<title>Working with 3D Anatomy</title>
</head>
<body>
<div class="container-fluid h-100">
<div class="d-block d-md-none showmenu">
<button class="btn btn-block bg-transparent text-white">show Menu</button>
</div>
<div class="row h-100">
<div class="sidebar">
<ul >
<li>
<a href="index.html">01. Introduction to A.D.A.M. Interactive Anatomy</a>
</li>
<li>
<a href="whats-new-in-adam-interactive-anatomy.html">02. What's New in A.D.A.M. Interactive Anatomy?</a>
</li>
<li>
<a href="customer-support.html">03. Customer Support</a>
</li>
<li>
<a href="system-requirements.html">04. System Requirements</a>
</li>
<li>
<a href="getting-started.html">05. Getting Started</a>
</li>
<li>
<a href="working-with-dissectible-anatomy.html">06. Working with Dissectible Anatomy</a>
</li>
<li>
<a href="working-with-atlas-anatomy.html">07. Working with Atlas Anatomy</a>
</li>
<li class="active">
<a href="working-3d-anatomy.html">08. Working with 3D Anatomy</a>
</li>
<li>
<a href="working-curriculum-builder.html">09. Working with Curriculum Builder</a>
</li>
<li>
<a href="working-lab-exercise.html">10. Working with LAB Exercises</a>
</li>
</ul>
</div>
<div class="content">
<h2 class="panel-heading">Working with 3D Anatomy</h2>
<div class="col-12">
<h4 class="sub-panel-heading">A. Opening 3D Anatomy Models</h4>
<p>To open a 3D anatomy model:</p>
<ul class="roman">
<li>On the Home Page, click the 3D Anatomy.</li>
<li>To open models, click the model thumbnail</li>
</ul>
<h4 class="sub-panel-heading">B. Identifying 3D Anatomy Structures</h4>
<p>In 3D anatomy models, you identify anatomical structures by choosing the name from the structure list.</p>
<p>To identify an anatomical structure:</p>
<ul class="roman">
<li>Click the Object Tree. A structure list appears, showing all identified structures in the 3D anatomy model.</li>
<li>Click a structure name to select it.</li>
<li>The model rotates to the selected structure and the structure is highlighted. </li>
</ul>
<h4 class="sub-panel-heading">C. Viewing a 3D Anatomy Model</h4>
<p>You can use the Zoom, Pan, Orbit, Center, Tools (Dissect, Undo-Dissect, X-Ray Mode, Isolate Mode and Cross Sections) buttons to change the view of a 3D anatomy model.</p>
<ul>
<li>To view the Tools click on the Display/Hide toggle button.</li>
<li>To enlarge or scale down the model, click the Zoom-In or Zoom-Out buttons or Mouse Cursor.</li>
<li>To view the model in 2D, click on the Pan Button.</li>
<li>To view the model in 3D, click on the Orbit Button.</li>
<li>To return the model to its default position, click on the Center button.</li>
<li>To view the interior of the model<br>
Dissect: To remove the body annotation layer by layer.<br>
Undo-Dissect: To reverse all the changes. <br>
X-Ray Mode: To view model in X-Ray Mode.<br>
Isolate Mode: To view only selected body part.</li>
<li>To view a structure, click the name of the structure list in the Object Tree.</li>
</ul>
<h4 class="sub-panel-heading">D. 3D Anatomy Quick Reference</h4>
<div class="row justify-content-center my-5">
<div class="col-md-6">
<img class="img-fluid" src="images/anatomy.jpg" alt="Lab Exercises">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script>
$(document).ready(function(){
$('.showmenu button').on('click', function(){
$('.sidebar').toggleClass('show');
});
});
</script>
</body>
</html>