翻訳と辞書
Words near each other
・ Plashes Wood
・ Plashet
・ Plashet School
・ Plashett Park Wood
・ Plashetts
・ Plashetts railway station
・ Plasina Tunnel
・ Plasketlands
・ Plaskett
・ Plaskett (crater)
・ Plaskett's star
・ Plaskett, California
・ Plaskorz
・ Plaskovac
・ Plaskynaston Lane
PLaSM
・ Plasma
・ Plasma (album)
・ Plasma (comics)
・ Plasma (physics)
・ Plasma acceleration
・ Plasma Acoustic Shield System
・ Plasma activation
・ Plasma actuator
・ Plasma afterglow
・ Plasma antenna
・ Plasma arc welding
・ Plasma ashing
・ Plasma cannon
・ Plasma cell


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

PLaSM : ウィキペディア英語版
PLaSM

PLaSM (Programming Language of Solid Modeling) is an open source scripting language〔A. Paoluzzi: Geometric Programming for Computer Aided Design, Wiley, 2003〕 for solid modeling, a discipline that constitutes the foundation of computer-aided design and CAD systems. In contrast to other CAD programs, PLaSM emphasizes scripting rather than interactive GUI work. Users can create arbitrarily complex designs using a wide range of simple 2D and 3D objects, advanced curves and curved surfaces, Boolean operations, and elementary as well as advanced geometric transformations.
The scripting approach is very different from working with an interactive Graphical User Interface (GUI). Although it means less user comfort, it is preferred by numerous CAD instructors as scripts reveal all details of the design procedure (not only the final design) and students are exposed to elementary computer programming.
PLaSM has been developed since the 1980s by the CAD group at the Universities Roma Tre and La Sapienza in Rome, Italy by Alberto Paoluzzi and his collaborators. It was used at the University of Rome to create an extensive database of ancient Rome architecture.
== Illustration of usage ==
The way PLaSM is used is very different from interactive graphical applications. This is illustrated in the example below. The following code creates a cube of size H = 3:
H = 3
c = CUBE(H)
The following code creates a cylinder of radius 1 and height H
* sqrt(3):
cyl = CYLINDER(1, H
* SQRT(3))
The cylinder is further rotated by minus 45 degrees about the y-axis, and then once more by 45 degrees about the z-axis.
cyl = R(cyl, 2, -PI/4)
cyl = R(cyl, 3, PI/4)
The result is displayed using the VIEW command.
VIEW(STRUCT(c, cyl))
The following code subtracts the cylinder from the cube:
d = DIFF(c, cyl)
Their intersection is constructed as follows:
i = INTERSECTION(c, cyl)
Both objects are then displayed next to each other:

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「PLaSM」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.