Exemplo n.º 1
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddMeshParameter("Meshes", "M", "Robot system's meshes", GH_ParamAccess.list);
     pManager.AddTextParameter("Joints", "J", "Robot system's joint rotations as a string of numbers separated by commas.", GH_ParamAccess.item);
     pManager.AddPlaneParameter("Planes", "P", "Robot system's joint lanes", GH_ParamAccess.list);
     pManager.AddTextParameter("Errors", "E", "Errors in kinematic solution", GH_ParamAccess.list);
 }
Exemplo n.º 2
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddParameter(new ProgramParameter(), "Program", "P", "Program", GH_ParamAccess.item);
     pManager.AddTextParameter("Code", "C", "Code", GH_ParamAccess.tree);
     pManager.AddNumberParameter("Duration", "D", "Program duration in seconds", GH_ParamAccess.item);
     pManager.AddTextParameter("Warnings", "W", "Warnings in program", GH_ParamAccess.list);
     pManager.AddTextParameter("Errors", "E", "Errors in program", GH_ParamAccess.list);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     // Use the pManager object to register your output parameters.
     // Output parameters do not have default values, but they too must have the correct access type.
     pManager.AddTextParameter("ChosenProject", "ChosenProject", "The URL of the chosen project",
         GH_ParamAccess.item);
 }
Exemplo n.º 4
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddPlaneParameter("Planes", "P", "Program target planes", GH_ParamAccess.tree);
     pManager.AddNumberParameter("Joints", "J", "Program target joints", GH_ParamAccess.tree);
     pManager.AddTextParameter("Configuration", "C", "Program target configuration", GH_ParamAccess.tree);
     pManager.AddNumberParameter("Delta time", "T", "Program target time it takes to perform the motion", GH_ParamAccess.tree);
 }
        protected override void RegisterOutputParams(GH_OutputParamManager pManager)
        {
            // Add displacements, reactions, element forces etc

            pManager.AddTextParameter("Messageboard", "log", "Outputs a log of the performed calculation", GH_ParamAccess.list);

            pManager.AddParameter(new ResultElementParam(), "Result Elements", "RE", "Result elements, storing results from the calculation", GH_ParamAccess.list);
        }
Exemplo n.º 6
0
        /// <summary>
        /// Registers all the output parameters for this component.
        /// </summary>
        protected override void RegisterOutputParams(GH_OutputParamManager pManager)
        {
            // Use the pManager object to register your output parameters.
            // Output parameters do not have default values, but they too must have the correct access type.
            pManager.AddTextParameter("IfcFile", "FileLocation", "Path of the downloaded IFC file", GH_ParamAccess.item);

            // Sometimes you want to hide a specific parameter from the Rhino preview.
            // You can use the HideParameter() method as a quick way:
            //pManager.HideParameter(0);
        }
Exemplo n.º 7
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Edge", "E", "Edge description", GH_ParamAccess.item);
 }
Exemplo n.º 8
0
 protected override void RegisterOutputParams(GH_OutputParamManager mgr)
 {
     mgr.AddTextParameter("Xml", "X", "tree as xml", GH_ParamAccess.item);
 }
Exemplo n.º 9
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Status", "log", "Status messages", GH_ParamAccess.list);
     pManager.AddGenericParameter("Bridge", "MB", "The (websocket) object managing connection to the Machina Bridge", GH_ParamAccess.item);
 }
Exemplo n.º 10
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("HTML", "html", "The HTML code wrapped within a <div> element.",
                               GH_ParamAccess.list);
 }
Exemplo n.º 11
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("All Properties", "A", "list of all accessible properties", GH_ParamAccess.list);
     pManager.AddGenericParameter("Control", "C", "control to go into a container or the listener", GH_ParamAccess.item);
 }
Exemplo n.º 12
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Text input", "O", "SOFiMSHC text input", GH_ParamAccess.item);
 }
Exemplo n.º 13
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Sent?", "ok", "Correctly sent?", GH_ParamAccess.item);
     pManager.AddTextParameter("Instructions", "I", "Streamed Instructions", GH_ParamAccess.list);
 }
Exemplo n.º 14
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Component properties (text)", "Component properties (text)", "Component properties (text)", GH_ParamAccess.item);
     pManager.AddNumberParameter("Component properties (values)", "Component properties (values)", "Component properties (values)", GH_ParamAccess.item);
 }
Exemplo n.º 15
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Services list", "Services\nlist", "List of services from selected group", GH_ParamAccess.list);
 }
Exemplo n.º 16
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("NameTag", "NTag", "output name tag", GH_ParamAccess.tree);
 }
Exemplo n.º 17
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Text input", "O", "SOFiSTiK text input", GH_ParamAccess.list);
     pManager.AddNumberParameter("Length", "L", "Lengths of curves", GH_ParamAccess.list);
 }
Exemplo n.º 18
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGeometryParameter("Geometry", "G", "Output geometry.", GH_ParamAccess.item);
     pManager.AddTextParameter("Geometry ID", "ID", "Used IDs.", GH_ParamAccess.item);
     pManager.AddTextParameter("Confirmation", "c", "Text explanation of operation.", GH_ParamAccess.item);
 }
Exemplo n.º 19
0
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddTextParameter("Class", "Class", "Material class", GH_ParamAccess.item);
     manager.AddTextParameter("Name", "Name", "Material name", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddNumberParameter("Utilisation degree", "U", "A number of the utilisations which ranges from 0 (not utilised at all) to 1 (utilised to the limit) and beyond (overutilised)", GH_ParamAccess.item);
     pManager.AddTextParameter("Utilisation description", "desc", "Information of the utilisation type", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("File Path", "FP", "The unused File Path", GH_ParamAccess.item);
 }
Exemplo n.º 22
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Message", "M", "Records messages from the component", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Data", "D", "Data received.", GH_ParamAccess.tree);
     pManager.AddTextParameter("Info", "I", "Commit information.", GH_ParamAccess.item);
 }
Exemplo n.º 24
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager outputParamManager)
 {
     outputParamManager.AddGenericParameter("AnalyticalObject", "AnalyticalObject", "SAM Analytical Object", GH_ParamAccess.list);
     outputParamManager.AddTextParameter("Report", "Report", "Report", GH_ParamAccess.item);
 }
Exemplo n.º 25
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Log", "L", "Log", GH_ParamAccess.list);
 }
Exemplo n.º 26
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("SecTag", "STag", "output section tag", GH_ParamAccess.tree);
 }
Exemplo n.º 27
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Mesh Path", "Path", "Full path for the mesh file",
                               GH_ParamAccess.item);
 }
Exemplo n.º 28
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("CatchErrors", "ERR", "Tell if there is an error while loading the libraries", GH_ParamAccess.item);
     pManager.AddNumberParameter("Latitude", "Lat", "Creates the latitudes from the grib2 file", GH_ParamAccess.list);
     pManager.AddNumberParameter("Longitude", "Lon", "Creates the longitudes from the grib2 file", GH_ParamAccess.list);
 }
Exemplo n.º 29
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Lc", "Lc", "SOFiLOAD Input", GH_ParamAccess.list);
 }
Exemplo n.º 30
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddNumberParameter("Diameter", "Diameter", "Diameter.", GH_ParamAccess.item);
     pManager.AddGenericParameter("ReinforcingMaterial", "ReinforcingMaterial", "ReinforcingMaterial", GH_ParamAccess.item);
     pManager.AddTextParameter("Profile", "Profile", "Profile.", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Result Node ID", "R", "Result Node ID", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     _keysOut = pManager.AddTextParameter("Keys", "K", "Keys", GH_ParamAccess.list);
 }
Exemplo n.º 33
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Selected Object", "Obj", "Object information that Lyrebird will create or modify", GH_ParamAccess.item);
     pManager.AddTextParameter("Message", "Msg", "Failure or warning messages", GH_ParamAccess.item);
 }
Exemplo n.º 34
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Program Manifest", "<PM>", "Program information.", GH_ParamAccess.item);
     pManager.AddGenericParameter("Zone Manifest", "<ZM>", "Zone information.", GH_ParamAccess.item);
     pManager.AddTextParameter("Debug", "d", "Debug text.", GH_ParamAccess.list);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Mode Load case", "LC", "Created load case string", GH_ParamAccess.item);
 }
Exemplo n.º 36
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddMeshParameter("System meshes", "M", "System meshes", GH_ParamAccess.list);
     pManager.AddNumberParameter("Joint rotations", "J", "Joint rotations", GH_ParamAccess.list);
     pManager.AddPlaneParameter("Plane", "P", "TCP position", GH_ParamAccess.list);
     pManager.AddIntegerParameter("Index", "I", "Current target index", GH_ParamAccess.item);
     pManager.AddNumberParameter("Time", "T", "Current time in seconds", GH_ParamAccess.item);
     pManager.AddParameter(new ProgramParameter(), "Program", "P", "This is the same program as the input program. Use this output to update other visualization components along with the simulation.", GH_ParamAccess.item);
     pManager.AddTextParameter("Errors", "E", "Errors", GH_ParamAccess.list);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddNumberParameter("Utilisation degree", "U", "A number of the utilisations which ranges from 0 (not utilised at all) to 1 (utilised to the limit) and beyond (overutilised)", GH_ParamAccess.item);
     pManager.AddTextParameter("Utilisation description", "desc", "Information of the utilisation type", GH_ParamAccess.item);
 }
Exemplo n.º 38
0
 /// <summary>
 ///     Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Report text", "RT", "Report text", GH_ParamAccess.list);
 }
Exemplo n.º 39
0
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddParameter(new Parameters.Category(), "Category", "C", "Category in which the Element resides", GH_ParamAccess.item);
     manager.AddParameter(new Parameters.ElementType(), "Type", "T", "ElementType of the Element", GH_ParamAccess.item);
     manager.AddTextParameter("Name", "N", "A human readable name for the Element", GH_ParamAccess.item);
 }
Exemplo n.º 40
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("ProfileSize", "S", "Profile size", GH_ParamAccess.list);
 }
Exemplo n.º 41
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Merged Json", "J", "The resultant Json", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddLineParameter("Centre Line", "CL", "Centre Line of element", GH_ParamAccess.item);
     pManager.AddTextParameter("Cross Section", "XS", "Cross section of the element", GH_ParamAccess.item);
     pManager.AddVectorParameter("Normal", "N", "Normal of the elements", GH_ParamAccess.item);
 }
Exemplo n.º 43
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Color", "C", "Color Buffer", GH_ParamAccess.item);
     pManager.AddTextParameter("Depth", "D", "Depth Buffer", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Txt", "T", "Output will update only if input changed.", GH_ParamAccess.tree);
 }
Exemplo n.º 45
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Radians", "R", "Radians", GH_ParamAccess.item);
 }