Skip to content

Instantly share code, notes, and snippets.

@andrewheumann
Created November 15, 2020 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewheumann/283d37500940cbf225d1a541b65e10cc to your computer and use it in GitHub Desktop.
Save andrewheumann/283d37500940cbf225d1a541b65e10cc to your computer and use it in GitHub Desktop.
Sample Hypar Function - With Material
using Elements;
using Elements.Geometry;
using System.Collections.Generic;
namespace StarterFunction
{
public static class StarterFunction
{
/// <summary>
/// My very first hypar function
/// </summary>
/// <param name="model">The input model.</param>
/// <param name="input">The arguments to the execution.</param>
/// <returns>A StarterFunctionOutputs instance containing computed results and the model with any new elements.</returns>
public static StarterFunctionOutputs Execute(Dictionary<string, Model> inputModels, StarterFunctionInputs input)
{
// create an output object
var output = new StarterFunctionOutputs(input.Width * input.Length * input.Height, input.Width * input.Length);
// create a rectangle
var rectangle = Polygon.Rectangle(input.Width, input.Length);
// create a new material
var material = new Material("Box Color", input.MassColor);
// create a mass from the rectangle
var mass = new Mass(rectangle, input.Height, material);
// add the mass to the output model
output.Model.AddElement(mass);
return output;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment