Forgot password?

Create an account!

Scripts

« back

Array Library

Description RhinoScript Library

RhinoScript Library by Hanno

A collection of functions to make life with arrays in RhinoScript easier

Version

Version 1.4 (Jun 30, 2008)


Changes since previous version:

Added function array_nsort() which sorts nested arrays (see example in the source code)

« older versions

Requirements

Rhino version: Rhino 4

Code

You need to be logged in to view the source code.

Download

You need to be logged in to download the script.

Recommend

Why are these buttons gray?

Comments
  • +++ Jun 30, 2008 23.45: Array Library version 1.4 published +++

  • +++ Apr 04, 2008 00.39: Array Library version 1.3 published +++

  • 1. Hanno (Feb 05, 2008 21.07):

    Here is a nice feature that is not so obvious:
    VBScript does not allow to say

    ReDim myArray(1)(3)

    to put an array(3) at position(1) of myArray. But with Array Library you can do

    myArray(1) = array_dim(3)

    to achieve this without having to use a temporary variable.

  • +++ Jan 21, 2008 13.43: Array Library version 1.2 published +++

  • +++ Jan 18, 2008 15.58: Array Library version 1.1 published +++

  • +++ Jan 13, 2008 16.12: Array Library version 1 published +++