Additional Nexus reference PDFs:

Nexus legacy documentation:

This information is for Vicon Nexus 2.12. For up-to-date help, see the latest Nexus documentation.

Vicon Nexus banner

The following information is provided to help you to get started using Python for modeling with Nexus.

Before you begin, ensure you have launched and configured Python as described in Modeling with Python.

Tip
Remember to import the module first:
import ViconNexus

Display all Nexus Python SDK commands

At the Python command prompt, assuming you have completed the above preparatory step, enter:

dir(ViconNexus.ViconNexus)

A list of all Nexus Python SDK commands is displayed:

 

Display help on a command

To display help on one of the commands listed above:

At the Python command prompt, enter:

help(commandName)

Where commandName is the command for which you want to display help.

For example, to display help about GetTrajectory, enter:

help(ViconNexus.ViconNexus.GetTrajectory)