#1=CARTESIAN_POINT('',(0.E0,0.E0,0.E0));

Slides:



Advertisements
Similar presentations
BREPS solids construction by surfaces of extrusion & revolution
Advertisements

Operators in CAD Systems
STEP-NC AP238 STEP Tools, Inc. 14 First Street, Troy, NY (518) / (518) fax Overview of Technical Corrigendum.
ISO STEP representation and geometry - a detailed introduction
Chapter 4 Creating Placed Features
Generative Measurement Scenario for STEP-NC ISO AP238 Larry Maggiano Senior Systems Analyst Mitutoyo America Corporation CTLab 1 October 2008 Copyright.
11.3 Surface Areas of Pyramids and Cones A pyramid is a polyhedron in which one face (the base) can be any polygon and the other faces (the lateral faces)
Prisms, Pyramids, Cones, and Cylinders! Oh My! Kathleen Wilder Howard Middle School.
© Fluent Inc. 10/20/ Introductory GAMBIT Notes GAMBIT v2.0 Jan 2002 Fluent User Services Center Creating Geometry in GAMBIT.
Copyright LKSoftWare GmbH, Entities for Geometrically bounded wireframe ISO : AIC Geometrically bounded wireframe ISO/TS :
Vertices, Edges and Faces By Jordan Diamond. Vertices In geometry, a vertices is a special kind of point which describes the corners or intersections.
Lesson 72, day 2 Pyramids and Cones. Pyramids Pyramid: geometric solid with a polygon base, and triangle faces (lateral faces) Vertex: top of the pyramid.
Cube A cube[1] is a three-dimensional solid object bounded by six square faces, facets or sides, with three meeting at each vertex[1]three-dimensionalsquarefacetsvertex.
A face of a prism or pyramid that is not a base An edge of a prism or pyramid that is not an edge of a base A prism whose lateral faces are all rectangles.
Advanced Geometry Conic Sections Lesson 3
Conics Conics Review. Graph It! Write the Equation?
Introduction to 3D Solids and Solids of Revolution Some 3D shapes can be formed by revolving a 2D shape around a line (called the axis of revolution).
中央财政支持社会组织参与社会服务项目 PNT 无创治疗青光眼防盲治盲医疗救助项目 中期情况汇报 中国盲人协会.
Friday, October 16 Write in vertex form by completing the square. 1) y = x 2 + 8x + 3 2) y = x x + 11.
9.3 - Circles Objectives: Write an equation for a circle given sufficient information. Given an equation of a circle, graph it and label the radius and.
Warm Up Find the surface area of the right prisms.
The point opposite the base of the pyramid
Prisms, Pyramids, Cones, and Cylinders. Oh My
Chapter 4 Creating Placed Features
Lesson Geometric Solids -- Prisms and Cylinders
Graph Rational Numbers on a Coordinate Plane…
STEP-NC Technical Issue
Goal: Identify and name solid figures.
Unit 11: 3-Dimensional Geometry
Examples: Intro to Conics - Circles
The Circle and the Parabola
Part 4.
Parametric Equations and Polar Coordinates
Geometry Operations in GAMBIT
Intersecting Simple Surfaces
6.2 Equations of Circles +9+4 Completing the square when a=1
Engineering Geometry Engineering geometry is the basic geometric elements and forms used in engineering design. Engineering and technical graphics are.
Physics 014 Gauss’ Law.
4 minutes Warm-Up 1. Graph the equation x2 - 8x – y + 20 = 0. Label the vertex, focus, and directrix.
Y Label each of the components of the parabola A: ________________ B: ________________ C: ________________ C B B 1 2.
DRILL Find the area and circumference of each circle in terms of (pi) with the given information for each circle. Radius = 5 in. Diameter = 14 ft. Radius.
11.4 Three Dimensional Figures
Unit 11: 3-Dimensional Geometry
11.3 Surface Areas of Pyramids and Cones
Chapter 3 1. Line Integral Volume Integral Surface Integral
a)Sketch the region bounded by the lines y = 3, y = 1, x = 1, x = 6.
Area Between Polar Curves
Computer Aided Engineering Design
Some Theorems Thm. Divergence Theorem
10.1 Vocab Day 1 Grab a notes page from the back under Geometry on Wednesday Have notebook and homework out.
Section 17.1 Parameterized Curves
Writing Equations of Conics
Review Circles: 1. Find the center and radius of the circle.
11.7 Circles in the Coordinate Plane
Volumes of Solids of Revolution
EXAMPLE 2 Find lengths in circles in a coordinate plane
6.2 Volumes If a region in the plane is revolved about a line, the resulting solid is called a solid of revolution, the line is called the axis of revolution.
Circles and Parabolas Dr. Shildneck Fall, 2014.
Do-Now 1) Reflect quadrilateral ABCD with A(3, –1), B(8, –3), C(5, –8), and D(1, –6) in the x-axis. Find the area of the image.
Objective - To graph ordered pairs on the coordinate plane.
Use Green's Theorem to evaluate the double integral
Evaluate the line integral. {image}
Conic Sections The Parabola.
What are Conic Sections?
Circles in the Coordinate Plane
Jeopardy Solving for y Q $100 Q $100 Q $100 Q $100 Q $100 Q $200
Three-Dimensional Figures
Plane Curves and Parametric Equations
Evaluate the line integral. {image}
Area and Arc Length in Polar Coordinates
Presentation transcript:

#1=CARTESIAN_POINT('',(0.E0,0.E0,0.E0)); ENTITY cartesian_point SUBTYPE OF (point); name : label; coordinates : LIST [1:3] OF length_measure; END_ENTITY;

#2=DIRECTION('',(0.E0,0.E0,1.E0)); #3=DIRECTION('',(1.E0,0.E0,0.E0));

#4=AXIS2_PLACEMENT_3D('',#1,#2,#3); ENTITY axis2_placement_3d SUBTYPE OF (placement); name : label; location : cartesian_point; axis : OPTIONAL direction; ref_direction : OPTIONAL direction; END_ENTITY;

#5=CARTESIAN_POINT('',(3.E1,0.E0,0.E0)); ENTITY cartesian_point SUBTYPE OF (point); name : label; coordinates : LIST [1:3] OF length_measure; END_ENTITY;

#7=VERTEX_POINT('',#5); #8=VERTEX_POINT('',#6); ENTITY vertex_point SUBTYPE OF (vertex, geometric_representation_item); vertex_geometry : point; (CARTESIAN_POINT) END_ENTITY;

#9=CIRCLE('',#4,30.); ENTITY circle SUBTYPE OF (conic); name : label; position : axis2_placement; radius : positive_length_measure; END_ENTITY;

#11=ORIENTED_EDGE('',*,*,#10,.T.); #10=EDGE_CURVE('',#7,#8,#9,.T.); ENTITY edge_curve SUBTYPE OF (edge, geometric_representation_item); name : label; edge_start : vertex; edge_end : vertex; edge_geometry : curve; same_sense : BOOLEAN; END_ENTITY;

#13=ORIENTED_EDGE('',*,*,#12,.T.); #12=EDGE_CURVE('',#8,#7,#9,.T.); ENTITY edge_curve SUBTYPE OF (edge, geometric_representation_item); name : label; edge_start : vertex; edge_end : vertex; edge_geometry : curve; same_sense : BOOLEAN; END_ENTITY;

#14=EDGE_LOOP('',(#11,#13)); ENTITY edge_loop SUBTYPE OF (loop, path); name : label; edge_list : LIST [1:?] OF UNIQUE oriented_edge; END_ENTITY;

#15=FACE_OUTER_BOUND('',#14,.F.); ENTITY face_outer_bound SUBTYPE OF (face_bound); name : label; bound : loop; orientation : BOOLEAN; END_ENTITY;

#16=PLANE('',#4); ENTITY plane SUBTYPE OF (elementary_surface); name : label; position : axis2_placement_3d; END_ENTITY;

#17=ADVANCED_FACE('',(#15),#16,.F.); ENTITY advanced_face SUBTYPE OF (face_surface); name : label; bounds : SET [1:?] OF face_bound; face_geometry : surface; same_sense : BOOLEAN; END_ENTITY;

osnova cilindra na koti z=100 #18=CARTESIAN_POINT('',(0.,0.,100.)); #19=DIRECTION('',(0.,0.,1.)); #20=DIRECTION('',(1.,0.,0.)); #21=AXIS2_PLACEMENT_3D('',#18,#19,#20); ENTITY axis2_placement_3d SUBTYPE OF (placement); name : label; location : cartesian_point; axis : OPTIONAL direction; ref_direction : OPTIONAL direction; END_ENTITY;

#22=CARTESIAN_POINT('',(30.,0.,100.)); #24=VERTEX_POINT('',#22); #25=VERTEX_POINT('',#23); ENTITY vertex_point SUBTYPE OF (vertex, geometric_representation_item); vertex_geometry : point; (CARTESIAN_POINT) END_ENTITY;

#26=CIRCLE('',#21,30.); ENTITY circle SUBTYPE OF (conic); name : label; position : axis2_placement; radius : positive_length_measure; END_ENTITY;

#28=ORIENTED_EDGE('',*,*,#27,.T.); #27=EDGE_CURVE('',#24,#25,#26,.T.); ENTITY edge_curve SUBTYPE OF (edge, geometric_representation_item); name : label; edge_start : vertex; edge_end : vertex; edge_geometry : curve; same_sense : BOOLEAN; END_ENTITY;

#29=EDGE_CURVE('',#25,#24,#26,.T.); #30=ORIENTED_EDGE('',*,*,#29,.T.); ENTITY edge_curve SUBTYPE OF (edge, geometric_representation_item); name : label; edge_start : vertex; edge_end : vertex; edge_geometry : curve; same_sense : BOOLEAN; END_ENTITY;

#31=EDGE_LOOP('',(#28,#30)); ENTITY edge_loop SUBTYPE OF (loop, path); name : label; edge_list : LIST [1:?] OF UNIQUE oriented_edge; END_ENTITY;

#32=FACE_OUTER_BOUND('',#31,.T.); ENTITY face_outer_bound SUBTYPE OF (face_bound); name : label; bound : loop; orientation : BOOLEAN; END_ENTITY;

#33=PLANE('',#21); ENTITY plane SUBTYPE OF (elementary_surface); name : label; position : axis2_placement_3d; END_ENTITY;

#34=ADVANCED_FACE('',(#32),#33,.T.); ENTITY advanced_face SUBTYPE OF (face_surface); name : label; bounds : SET [1:?] OF face_bound; face_geometry : surface; same_sense : BOOLEAN; END_ENTITY;

gornja polovina cilindra #35=ORIENTED_EDGE('',*,*,#10,.F.);

#36=VECTOR('',#2,100.); SUBTYPE OF (geometric_representation_item); name : label; orientation : direction; magnitude : length_measure; END_ENTITY;

#37=LINE('',#5,#36); ENTITY line SUBTYPE OF (curve); name : label; pnt : cartesian_point; dir : vector; END_ENTITY;

#38=EDGE_CURVE('',#7,#24,#37,.T.); #39=ORIENTED_EDGE('',*,*,#38,.T.); ENTITY edge_curve SUBTYPE OF (edge, geometric_representation_item); name : label; edge_start : vertex; edge_end : vertex; edge_geometry : curve; same_sense : BOOLEAN; END_ENTITY;

#40=ORIENTED_EDGE('',*,*,#27,.T.);

#41=LINE('',#6,#36); ENTITY line SUBTYPE OF (curve); name : label; pnt : cartesian_point; dir : vector; END_ENTITY;

#42=EDGE_CURVE('',#8,#25,#41,.T.); #43=ORIENTED_EDGE('',*,*,#42,.F.); ENTITY edge_curve SUBTYPE OF (edge, geometric_representation_item); name : label; edge_start : vertex; edge_end : vertex; edge_geometry : curve; same_sense : BOOLEAN; END_ENTITY;

#44=EDGE_LOOP('',(#35,#39,#40,#43)); ENTITY edge_loop SUBTYPE OF (loop, path); name : label; edge_list : LIST [1:?] OF UNIQUE oriented_edge; END_ENTITY;

#45=FACE_OUTER_BOUND('',#44,.F.); ENTITY face_outer_bound SUBTYPE OF (face_bound); name : label; bound : loop; orientation : BOOLEAN; END_ENTITY;

#46=CYLINDRICAL_SURFACE('',#4,30.); ENTITY cylindrical_surface SUBTYPE OF (elementary_surface); name : label; position : axis2_placement_3d; radius : positive_length_measure; END_ENTITY;

#47=ADVANCED_FACE('',(#45),#46,.T.); ENTITY advanced_face SUBTYPE OF (face_surface); name : label; bounds : SET [1:?] OF face_bound; face_geometry : surface; same_sense : BOOLEAN; END_ENTITY;

donja polovina cilindra #48=ORIENTED_EDGE('',*,*,#12,.F.); #49=ORIENTED_EDGE('',*,*,#42,.T.); #50=ORIENTED_EDGE('',*,*,#29,.T.); #51=ORIENTED_EDGE('',*,*,#38,.F.);

#52=EDGE_LOOP('',(#48,#49,#50,#51)); ENTITY edge_loop SUBTYPE OF (loop, path); name : label; edge_list : LIST [1:?] OF UNIQUE oriented_edge; END_ENTITY;

#53=FACE_OUTER_BOUND('',#52,.F.); ENTITY face_outer_bound SUBTYPE OF (face_bound); name : label; bound : loop; orientation : BOOLEAN; END_ENTITY;

#54=ADVANCED_FACE('',(#75),#46,.T.); ENTITY advanced_face SUBTYPE OF (face_surface); name : label; bounds : SET [1:?] OF face_bound; face_geometry : surface; same_sense : BOOLEAN; END_ENTITY;

zatvorena ljuska #55=CLOSED_SHELL('',(#17,#34,#47,#54)); ENTITY clossed_shell SUBTYPE OF (connected_face_set); cfs_faces : SET [1:?] OF face; END_ENTITY;

B-REP model #56=MANIFOLD_SOLID_BREP('',#55); ENTITY manifold_solid_brep SUBTYPE OF (solid_model); name : label; outer : closed_shell; END_ENTITY;