2016spring cd 術語 - 40123224/cdw2 GitHub Wiki
Mechanical Design (機械設計)
Thermal & Fluid (熱流)
Solid Mechanics (固力)
Electrical & Electronics (電機電子)
Information & Telecommunication (資訊通信)
Design & Manufacturing & Control & Management (設計製造控制與管理)
Oral & Text & 2D Graphics & 3D Graphics (口語表達, 文字表達, 2D 與 3D 圖像表達, 理論分析表達與實體表達)
& Analytical analysis & Physical Models
Collaboration (協同) Cooperation (合作)
Fork (這裡希望將它翻為倉儲資料的"互刻"), 而且這種與基底倉儲能夠互相複刻內容的子倉儲, 可以被改版, 然後再透過"拉回請求", 將版本資料拉回合併, 也可以逆轉"拉回請求"流程, 從父倉儲取回最新的版本內容)
Fork (互刻) - 具有互相連結關係的倉儲版本複刻, 使用者可以利用 pull request 向 base fork (基底互刻) 倉儲要求納入 head fork (標頭互刻) 倉儲的版本內容, 也可以利用 switching base (互換基底), 利用逆向 pull request, 將原先的基底互刻倉儲版本, 合併到使用者的互刻倉儲.
Pull Request (拉回請求)
ungit (一種用 node.js 編寫的 git GUI 工具)
sourcetree (一種 git GUI 視窗單機程式套件)
portable (可攜, sourcetree 可以設法安裝為可攜的 Windows 版本)
Web based (網際)
WWW Server (全球資訊網伺服器)
html (超文件傳輸語言)
form (表單)
Javascript (一種已經內嵌在各種瀏覽器中的程式語言)
Github Pages (由 Github 所提供的全球資訊網資料伺服架構, 可以將個倉儲的 gh-pages 分支呈現在網頁上)
wsgi (一種支援全球資訊網伺服器端程式伺服架構)
Flask (一種由 Python 編寫的全球資訊網程式框架)
OpenShift (一種提供雲端應用程式服務的平台)
.ssh (位於用戶 home 目錄下, 用來存放 SSH 格式資料的目錄)
id_rsa (置於 .ssh 目錄下的 private key 檔案名稱)
api (application programming interface) 應用程式介面
pro/web.link - 由 PTC 所提供的全球資訊網應用程式介面, 讓使用者透過 Javascript 程式與 Creo Parametric 應用程式互動
git remote add - git 指令的遠端新增連結, 而此一資料倉儲的對應將存在使用的本地端
cdw2 目前在 OpenShift 的對應程式, http://cdw2-ladisai.rhcloud.com/option (2016springwcm At Gmail 管理)
Flask Blueprint 應用範例:
http://cdw2-ladisai.rhcloud.com/bg99/task0
http://cdw2-ladisai.rhcloud.com/bg99/task1
SVG - Scalable Vector Graphics
Canvas
WebGL
Javascript
Brython
WSGI
API
Pro/Web.Link
Websocket
Symbolic computation
Symbol
pip install sympy
四個圓弧相切點的符號約束條件:
x22 + y22 - 7*7 ==> x2, y2 位於圓心為 (0, 0), 半徑為 7 的圓上
(x1-x2)**2+(y1-y2)2 -402 ==> x2, y2 位於圓心為 (x1, y1), 半徑為 40 的圓上
(x1-x3)**2+(y1-y3)2 -402 ==> x3, y3 位於圓心為 (x1, y1), 半徑為 40 的圓上
(x1)**2+(y1)2 -472 ==> (x1, y1) 與 (0, 0) 的距離為 47
(x1)**2+(y1+20)2 -472 ==> (x1, y1) 與 (0, -20) 的距離為 47
x2-x3 ==> x2 的值等於 x3
Cango 手冊: http://www.arc.id.au/CangoUserGuide.html
A
rx, ry,
x-rotation, x 軸的旋轉角度
large-arc-flag, 是否取大圓弧, 0 表取小弧, 1 表取大弧
sweep-flag, 從弧起點的右手則拇指方向, 1 表向外, 0 表向內
x, y
elliptical arc:
Draws and arc starting from the current point and ending at (x, y).
The ellipse has the two radii (rx, ry).
The x-axis of the ellipse is rotated by 'x-axis-rotation' relative to the x-axis of the world coordinate system.
The 'large-arc-flag' and the 'sweep-flag' together define which way the arc joins to start and end point.
For Cartesian coordinate systems the 'x-axis-rotation' is measured anti-clockwise and 'sweep-flag = 1' may be interpreted as the arc sweeping in an anti-clockwise direction.
For SVG coordinate systems the 'x-axis-rotation' is measured clockwise and 'sweep-flag = 1' flag may be interpreted as the arc sweeping in a clockwise direction.