forked from mcneel/MOVED-rhinoscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExportPolylineVertices.rvb
52 lines (43 loc) · 1.46 KB
/
ExportPolylineVertices.rvb
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
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' ExportPolylineVertices.rvb -- October 2005
' If this code works, it was written by Dale Fugier.
' If not, I don't know who wrote it.
' Works with Rhino 4.0.
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Option Explicit
Sub ExportPolylineVertices
' Prompt the user to specify a file name
Dim strFilter, strFileName
strFilter = "Text File (*.txt)|*.txt|All Files (*.*)|*.*||"
strFileName = Rhino.SaveFileName("Save Polyline Vertices As", strFilter)
If IsNull(strFileName) Then Exit Sub
' Get all objects
Dim arrObjects, strObject
arrObjects = Rhino.AllObjects
If Not IsArray(arrObjects) Then Exit Sub
' Get the file system object
Dim objFSO, objStream
Set objFSO = CreateObject("Scripting.FileSystemObject")
' Open a text file to write to
On Error Resume Next
Set objStream = objFSO.CreateTextFile(strFileName, True)
If Err Then
MsgBox Err.Description
Exit Sub
End If
' Export polyline vertices
Dim arrVertices, arrVertex
For Each strObject In arrObjects
If Rhino.IsPolyline(strObject) Then
arrVertices = Rhino.PolylineVertices(strObject)
If IsArray(arrVertices) Then
objStream.WriteLine strObject
For Each arrVertex In arrVertices
objStream.WriteLine Rhino.Pt2Str(arrVertex)
Next
End If
End If
Next
' Close the file
objStream.Close
End Sub