Beispiel #1
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);
 }
 /// <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);
 }
Beispiel #3
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);
 }
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
   pManager.AddIntegerParameter(RS.maxSpeedName, RS.maxSpeedNickname, RS.maxSpeedDescription, GH_ParamAccess.item);
   pManager.AddIntegerParameter(RS.maxForceName, RS.maxForceNickname, RS.maxForceDescription, GH_ParamAccess.item);
   pManager.AddIntegerParameter(RS.visionRadiusName, RS.visionRadiusNickname, RS.visionRadiusDescription, GH_ParamAccess.item);
   pManager.AddIntegerParameter(RS.visionAngleName, RS.visionAngleNickname, RS.visionAngleDescription, GH_ParamAccess.item);
 }
Beispiel #5
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams
   (GH_OutputParamManager pManager)
 {
   pManager.AddGenericParameter(RS.systemName, RS.systemNickname, RS.systemDescription, 
                                GH_ParamAccess.item);
   pManager.AddGenericParameter(RS.queleaName, RS.queleaNickname, RS.queleaDescription, GH_ParamAccess.list);
   pManager.AddGenericParameter(RS.queleaNetworkName, RS.queleaNetworkNickname, RS.queleaNetworkDescription, GH_ParamAccess.item);
 }
Beispiel #6
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);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddNumberParameter("Position", "pos", "The relative position along the element. 0 indicates the start node.", GH_ParamAccess.list);
     pManager.AddNumberParameter("X-displacement", "u", "Displacement along the local x-axis", GH_ParamAccess.list);
     pManager.AddNumberParameter("Y-displacement", "v", "Displacement along the local y-axis", GH_ParamAccess.list);
     pManager.AddNumberParameter("Z-displcement", "w", "Displacement along the local y-axis", GH_ParamAccess.list);
     pManager.AddNumberParameter("Torsional displacement", "phi", "Torsional displacement", GH_ParamAccess.list);
 }
        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);
        }
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
   pManager.AddPlaneParameter(RS.orientationName, RS.orientationNickname, RS.orientationDescription, GH_ParamAccess.item);
   pManager.AddPointParameter("Wheel Positions", "WP", "A list of positions of each wheel on the vehicle.", GH_ParamAccess.list);
   pManager.AddVectorParameter("Wheel Tangential Velocity", "WV", "The distance each wheel travels on the vehicle.", GH_ParamAccess.list);
   pManager.AddNumberParameter("Wheel Angles", "WA", "A list of angles of each wheel on the vehicle.", GH_ParamAccess.list);
   pManager.AddNumberParameter("Wheel Radii", "WR", "A list of radii of each wheel on the vehicle.", GH_ParamAccess.list);
   pManager.AddNumberParameter("Wheel Angular Velocity", "WS", "The speeds the wheels are rotating at.", GH_ParamAccess.list);
 }
    /// <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.AddGenericParameter(RS.emitterName, RS.emitterNickname, RS.emitterDescription, 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(1);
    }
Beispiel #11
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);
        }
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
   base.RegisterOutputParams(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.AddNumberParameter("Sensor Values", "V", "The values read by the left and right sensor.", GH_ParamAccess.list);
   pManager.AddPointParameter("Sensor Positions", "P", "The position of the left and right sensor.", GH_ParamAccess.list);
   // Sometimes you want to hide a specific parameter from the Rhino preview.
   // You can use the HideParameter() method as a quick way:
   //pManager.HideParameter(1);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddNumberParameter("Position", "pos", "The relative position along the element. 0 indicates the start node.", GH_ParamAccess.list);
     pManager.AddNumberParameter("AxialForce", "Nx", "Axial force", GH_ParamAccess.list);
     pManager.AddNumberParameter("ShearForceMinor", "Vy", "Shear force along weak axis", GH_ParamAccess.list);
     pManager.AddNumberParameter("ShearForceMajor", "Vz", "Shear force along strong axis", GH_ParamAccess.list);
     pManager.AddNumberParameter("Torsion", "T", "Torsion", GH_ParamAccess.list);
     pManager.AddNumberParameter("MomentMajor", "Myy", "Bending moment around the element y axis (strong bending)", GH_ParamAccess.list);
     pManager.AddNumberParameter("MomentMinor", "Mzz", "Bending moment around the element z axis (weak bending)", GH_ParamAccess.list);
     pManager.AddParameter(new UtilisationParam(), "Utilisation", "U", "Highest utilisation", GH_ParamAccess.list);
 }
 /// <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.AddGenericParameter("Force", RS.forceNickname,
                                "The resulting force vector for debugging purposes.", GH_ParamAccess.item);
   pManager.AddGenericParameter("Desired Velocity", "D",
                                "The calcuted desired velocity of this rule before it is applied to the quelea. Supplied for debugging and visualization purposes.", 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(1);
 }
Beispiel #15
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
   base.RegisterOutputParams(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.AddGeometryParameter("Sphere", "S", "The resulting wander sphere for debugging purposes.", GH_ParamAccess.item);
   pManager.AddPointParameter("Target Point", "P",
     "The target point that the agent will seek for debugging purposes.", 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(pManager.ParamCount - 2);
   //pManager.HideParameter(pManager.ParamCount - 1);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
   base.RegisterOutputParams(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.AddPointParameter("Prediction Location", "PL",
                                "The location the agent predicts to be its future location.", GH_ParamAccess.item);
   pManager.AddPointParameter("Path Point", "PP",
                                "The point on the path that the agent will steer towards.", 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(1);
 }
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
   pManager.AddPointParameter(RS.positionName, RS.positionNickname, RS.positionDescription, GH_ParamAccess.item);
   pManager.AddVectorParameter(RS.velocityName, RS.velocityNickname, RS.velocityDescription, GH_ParamAccess.item);
   pManager.AddVectorParameter(RS.accelerationName, RS.accelerationNickName, RS.accelerationDescription, GH_ParamAccess.item);
   pManager.AddIntegerParameter(RS.lifespanName, RS.lifespanNickname, RS.lifespanDescription, GH_ParamAccess.item);
   //pManager.AddIntegerParameter(RS.massName, RS.massNickname, RS.massDescription, GH_ParamAccess.item);
   //pManager.AddIntegerParameter(RS.bodySizeName, RS.bodySizeNickname, RS.bodySizeDescription, GH_ParamAccess.item);
   pManager.AddPointParameter("Surface Position", "SP", "For particles bound to Surface and Polysurface Environments, the position of the Agent mapped to a 2D plane representing the bounds of the surface.", GH_ParamAccess.item);
   pManager.AddVectorParameter("Surface Velocity", "SV", "For particles bound to Surface and Polysurface Environments, the velocity of the Agent mapped to a 2D plane representing the bounds of the surface.", GH_ParamAccess.item);
   pManager.AddVectorParameter("Surface Acceleration", "SA", "For particles bound to Surface and Polysurface Environments, the acceleration of the Agent mapped to a 2D plane representing the bounds of the surface.", GH_ParamAccess.item);
   //pManager.HideParameter(pManager.ParamCount-2);
 }
Beispiel #18
0
 /// <inheritdoc />
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddMeshParameter("mesh", "mesh", "Flipped mesh", GH_ParamAccess.item);
 }
Beispiel #19
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddCurveParameter("All Contours", "AC", "All contours whether or not they were fixed", GH_ParamAccess.list);
     pManager.AddCurveParameter("Fixed Contours", "FC", "Just the non-planar contours that were fixed", GH_ParamAccess.list);
 }
Beispiel #20
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("JSONPath query", "JPQ", "JSONPath query for the needed data", GH_ParamAccess.item);
 }
Beispiel #21
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager outputParamManager)
 {
     outputParamManager.AddParameter(new GooAnalyticalModelParam(), "AnalyticalModel", "AnalyticalModel", "AnalyticalModel", GH_ParamAccess.item);
     outputParamManager.AddBooleanParameter("Successful", "Successful", "Correctly imported?", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("FdModel", "FdModel", "FdModel.", GH_ParamAccess.item);
 }
Beispiel #23
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
 }
Beispiel #24
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddParameter(new FrameParameter(), "Frame", "F", "Frame", GH_ParamAccess.item);
 }
Beispiel #25
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("PPolyline", "PP", "Merged PPolyline.", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddParameter(new Parameters.FamilyInstance(), "Beam", "B", "New Beam", GH_ParamAccess.item);
 }
Beispiel #27
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("_neo4jDriver", "DB", "Neo4j Database connection", GH_ParamAccess.item);
 }
Beispiel #28
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddLineParameter("Result", "Result", "Result", GH_ParamAccess.list);
 }
Beispiel #29
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Path", "Path", "If the download succeeded then this will give you the path it was downloaded to.", GH_ParamAccess.item);
 }
Beispiel #30
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("XML", "X", "XML-formatted text", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddParameter(new Parameters.GeometricElement(), "DirectShape", "DS", "New DirectShape", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddParameter(new MaterialParam(), "Material", "M", "The constructed material", GH_ParamAccess.item);
 }
Beispiel #33
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Output", "Output", "Output", GH_ParamAccess.item);
 }
Beispiel #34
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.Register_BooleanParam(POutOnChange, "Out", "Output");
 }
Beispiel #35
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Action", "A", "Transform Action", GH_ParamAccess.item);
 }
Beispiel #36
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager outputParamManager)
 {
     outputParamManager.AddGenericParameter("Faces", "Faces", "Topology Faces", GH_ParamAccess.list);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddMeshParameter("Mesh Faces", "F", "The sub mesh faces (for coloring)", GH_ParamAccess.list);
     pManager.AddPointParameter("Face Centers", "C", "The centers of each mesh face (for vector previews)", GH_ParamAccess.list);
     pManager.AddNumberParameter("Face Aspects", "A", "The aspect of each mesh face (measured in degrees)", GH_ParamAccess.list);
 }
Beispiel #38
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.Register_DoubleParam(POutOutput, "Out", "Counter value");
 }
Beispiel #39
0
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddParameter(new Parameters.GraphicalElement(), "CurveElement", "C", "New CurveElement", GH_ParamAccess.list);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddParameter(new BeamReleaseParameter(), "Release", "R", "Release for beam", GH_ParamAccess.item);
 }
Beispiel #41
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddParameter(new ProgramParameter(), "Program", "P", "Program", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddParameter(new Parameters.Material(), "Materials", "Materials", "Materials list", GH_ParamAccess.list);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddParameter(new BcEntity(), "Element", "BE", "Element", GH_ParamAccess.list);
 }
Beispiel #44
0
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddSurfaceParameter("Brep Faces", "F", "Exploded brep Faces", GH_ParamAccess.tree);
     pManager.AddCurveParameter("Brep Edges", "E", "Exploded brep edges", GH_ParamAccess.tree);
     pManager.AddPointParameter("Brep Vertices", "V", "Exploded brep Vertices", GH_ParamAccess.tree);
 }
Beispiel #45
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddParameter(new SpeedParameter(), "Speed", "S", "Speed instance", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Diaphragm", "D", "Diaphragm", GH_ParamAccess.item);
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Mode Load case", "LC", "Created load case string", GH_ParamAccess.item);
 }
Beispiel #48
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("ShellEccentricity", "ShellEccentricity", "ShellEccentricity.", GH_ParamAccess.item);
 }
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
   pManager.AddPointParameter(RS.positionHistoryName, RS.positionHistoryNickname, RS.positionHistoryDescription, GH_ParamAccess.tree);
   //pManager.AddPointParameter(RS.positionHistoryName, RS.positionHistoryNickname, RS.positionHistoryDescription, GH_ParamAccess.list);
   //pManager.AddPointParameter(RS.positionHistoryName, RS.positionHistoryNickname, RS.positionHistoryDescription, GH_ParamAccess.tree);
 }
Beispiel #50
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Edges", "E", "Connectivity", GH_ParamAccess.list);
     pManager.AddPointParameter("Vertices", "V", "Rod meshes for structure", GH_ParamAccess.list);
 }
Beispiel #51
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddGenericParameter("Mesh", "M", "Remeshed result as Plankton Mesh", GH_ParamAccess.item);
 }
Beispiel #52
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.Register_GenericParam("Born Rule", "R", "Born rule");//name, nick, description
 }
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddParameter(new ResultElementParam(), "Result Elements", "RE", "Result elements, storing results from the calculation", GH_ParamAccess.list);
 }
Beispiel #54
0
 protected override void RegisterOutputParams(GH_OutputParamManager manager)
 {
     manager.AddParameter(new Parameters.Material(), "Material", "M", string.Empty, GH_ParamAccess.item);
 }
Beispiel #55
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
 }
        /*******************************************/

        protected override void RegisterOutputParams(GH_OutputParamManager pManager)
        {
            pManager.AddGenericParameter("node", "node", "Resulting BHoM cluster node", GH_ParamAccess.item);
        }
Beispiel #57
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddBooleanParameter("Collision found", "C", "True if a collision was found", GH_ParamAccess.item);
     pManager.AddIntegerParameter("Target index", "I", "Index of the first target where a collision was found (targets are not necessarily calculated in order)", GH_ParamAccess.item);
     pManager.AddMeshParameter("Collided meshes", "M", "Meshes involved in the collision", GH_ParamAccess.list);
 }
Beispiel #58
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("NameTag", "NTag", "output name tag", GH_ParamAccess.tree);
 }
 /// <summary>
 /// Registers all the output parameters for this component.
 /// </summary>
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
   pManager.AddPlaneParameter(RS.orientationName, RS.orientationNickname, RS.orientationDescription, GH_ParamAccess.item);
 }
Beispiel #60
0
 protected override void RegisterOutputParams(GH_OutputParamManager pManager)
 {
     pManager.AddTextParameter("Text", "T", "Result of text replacement", GH_ParamAccess.item);
 }