/// <summary> /// This is the method that actually does the work. /// </summary> /// <param name="DA">The DA object is used to retrieve from inputs and store in outputs.</param> protected override void SolveInstance(IGH_DataAccess DA) { IMesh iM = new IMesh(); DA.GetData(0, ref iM); Mesh mesh = IRhinoGeometry.TryGetRhinoMesh(iM); DA.SetData(0, mesh); }
public void UpdateGraphics() { _renderMesh = IRhinoGeometry.TryGetRhinoMesh(this); }