Japanese English

Plug-ins


Here you can refer specification documents of Vnano Plug-ins, providing built-in functions/variables available in Vnano Scripts.

Standard Plug-ins

Vnano Standard Plug-ins are a set of official plug-ins providing basic utility features as functions/variables available in Vnano (VCSSL nano) scripts.

How to Get & Use

These standard plug-ins may be bundled with applications (software) on which scripting features in the Vnano are supported. On such applications, features (functions/variables) provided by standard plug-ins are available by default. However, depending with the purpose of the scripting feature of the application, some (or all) of standard plug-ing may not be bundled. See the document of the application for checking which standard plug-ins are available.

Also, if you want to use standard plug-ins on the application (equipped with the script engine of the Vnano) you developed, get source code of plug-ins from the following repository, and compile it.

Development Repository

Vnano Standard Plug-ins are open source software, being developed on the following repository on the GitHub.

License

All Vnano Standard Plug-ins are released under CC0.

System Plug-in Group Specification

Plug-ins providing basic features, e.g.: I/O features, utility features, and so on.

SystemEnvironmentXnci1Plugin
Provides environment-related variables.
Variables: EOL / LF / CR
SystemDataTypeXnci1Plugin
Provides data-type-utility functions/variables.
Variables: INT_MAX / INT_MIN / FLOAT_MAX / FLOAT_MIN_ABS_NORMAL / FLOAT_MIN_ABS_DENORMAL / NAN / INF
Functions: nan(value) / inf(value) / length(array, dimIndex) / rank(array)
SystemTerminalIOXnci1Plugin
Provides I/O functions from/to the terminal.
Variables: print(...) / println(...)
SystemUserIOXnci1Plugin
Provides interactive I/O functions from/to the user.
Functions: popup(message) / alert(message) / confirm(message) / input(message) / input(message, defaultValue)
SystemFileIOXnci1Plugin
Provides I/O functions from/to files.
Variables: READ / WRITE / APPEND / READ_CSV / WRITE_CSV / APPEND_CSV / READ_TSV / WRITE_TSV / APPEND_TSV / READ_STSV
Functions: open(fileName, mode) / open(fileName, mode, encoding) / close(fileId) / flush(fileId) / write(fileId, ...) / writeln(fileId, ...) / read(fileId) / readln(fileId) / countln(fileId) / save(filePath, value) / load(filePath) / exists(filePath) / isdir(directoryPath) / listdir(directoryPath) / mkdir(directoryPath) /
SystemTimeXnci1Plugin
Provides time-utility functions.
Functions: time() / sleep(sleepTime)
SystemTerminationXnci1Plugin
Provides functions for terminating scripts.
Functions: exit() / exit(exitStatusCode) / error(errorMessage)
SystemTestXnci1Plugin
Provides utility functions for testing.
Functions: assert(expectedCondition)

Math Plug-in Group Specification

Plug-ins providing elementary math & statistical functions.

MathElementaryXnci1Plugin
Provides elementary math functions.
Variables: PI
Functons: rad(degree) / deg(radian) / sin(x) / cos(x) / tan(x) / asin(x) / acos(x) / atan(x) / sqrt(x) / ln(x) / log10(x) / pow(x,exponent) / exp(x) / abs(x)
MathStatisticalXnci1Plugin
Provides elementary statistical functions.
Functions: sum(...) / mean(...) / van(...) / van1(...) / sdn(...) / sdn1(...)

Japanese English
Index
News

Software Updates: Command Expansion in RINEARN Graph, and English Support in VCSSL
2024/02/05 - We updated our apps. This updates include "Enhancing the Command-Line Features of RINEARN Graph" and "Adding English Support to VCSSL." Delves into each of them!

Inside the Repetitive Execution Speedup Impremented in Vnano Ver.1.1
2024/01/17 - Delves into the update in Vnano 1.1 from a developer's viewpoint, providing detailed insights into the specific improvements made to the internal structure of the script engine.

Scripting Engine Vnano Ver.1.1 Released: Dramatic Speed Improvement for Repetitive Executions of the Same Content
2023/12/22 - Released the Vnano script engine Ver.1.1. In this version, we've made significant enhancements in processing speed by reducing the overhead of handling requests. Explains the details.

Updated Contents
Circular Wave Animation

Draws the circular wave as 3D animation, under the specified wave parameters.
2022-12-14
Sine Wave Animation

Draws the sine wave as animation, under the specified wave parameters.
2022-11-26
Tool For Converting Units of Angles: Degrees and Radians

A GUI tool for converting the angle in degrees into radians, or radians into degrees.
2022-11-22
Connector Fatal Exception - Specification
The unchecked exception thrown when errors have occurred, caused by incorrect implementations (might be bugs).
2022-09-26
Connector Exception - Specification
The checked exception thrown when errors have occurred, cause by expected normal problems.
2022-09-26