jw_cad 外部変形 - (1392) vbscriptでソリッド図形の矩形を描く -

外部変形は データのやり取りをテキストファイルで行うので プログラム言語は 自由に選ぶことができます。図形は機能的かつシンプルなため、数多くのユーザーに受け入れられています。

 

vbscriptでソリッド図形の矩形を描く

:vbscriptでソリッド図形の矩形を描く
@echo off
if not exist %~dp0eval.vbs echo ExecuteGlobal WScript.StdIn.ReadAll > %~dp0eval.vbs
for /f "delims=:" %%n in ('findstr /n "^#!" %0') do (
  copy jwc_temp.txt myfiles > nul
  (
:   echo Option Explicit
    echo On Error Resume Next
:   echo On Error GoTo 0
    more +%%n %0
  ) | cscript //nologo %~dp0eval.vbs > jwc_temp.txt
)
goto:eof

REM #jww
REM #1-%d 矩形の始点を指示してください
REM #2%d 対頂点を指示してください
REM #e

#!この次の行からプログラムを書いてください
'1)正規表現
Dim re
Set re = New RegExp
re.IgnoreCase = True '大文字と小文字を区別しない
re.Global = True '文字列全体を検索する

function reSplit(str)
  re.Pattern = "[ ]+"
  reSplit = Split(Trim(re.Replace(str," ")))
end function

function reTest(pat, str)
  re.Pattern = pat
  reTest = re.Test(str)
end function

'2)円周率
Const PI = 3.141592653589793

'4)ユーザ定義関数
function rgb(r, g, b)
  rgb = r + g * 256 + b * 256 * 256
end function

Dim line, F
Dim p1, p2, hk
With CreateObject("Scripting.FileSystemObject")
  With .OpenTextFile("myfiles")
  Do While Not .AtEndOfStream
    line = .ReadLine: F = reSplit(line)
    if reTest("^hk",line) then hk = F(1)*1.0
    if reTest("^hp1",line) then p1 = Array(F(1)*1.0,F(2)*1.0)
    if reTest("^hp2",line) then p2 = Array(F(1)*1.0,F(2)*1.0)
  Loop
  End With
End With

Dim d, p3, p4
Dim x1, y1, x2, y2, co, si, ww, hh
With WScript
  d = hk * PI / 180
  x1 = p1(0): y1 = p1(1)
  x2 = p2(0): y2 = p2(1)
  co = cos(hk * PI / 180)
  si = sin(hk * PI / 180)
  ww =   (x2 - x1) * co + (y2 - y1) * si
  hh = - (x2 - x1) * si + (y2 - y1) * co
  p3 = Array(x1 - hh * si, y1 + hh * co)
  p4 = Array(x1 + ww * co, y1 + ww * si)
  .Echo "lc10 " & rgb(0, 128, 128)
  .Echo "sl " & Join(p1) & " " & Join(p3) & " " & Join(p2) & " " & Join(p4)
End With