algorithmic modeling for Rhino
This library contains a number of components and commands for querying and manipulating Grasshopper components dynamically. You can retrieve components and objects based on their type, their library, the group they're in, or by selecting them directly - or even get all the objects in a document at once. You can then retrieve information about these components + parameters, the libraries they belong to. You can also manipulate objects directly: enabling/disabling, turning preview on and off, changing the color of groups, the text and size of scribbles, and the shape of sketch objects.
MetaHopper also adds a new menu to the Grasshopper document editor, that wraps up several functions:
BestPracticize Selection lets you pick a group and auto-insert params for all the inputs and outputs coming into/out of the group. This makes for nice, tidy functional groupings that make your Grasshopper code easier to read.
Save Snippet improves on an earlier script I released - it lets you select any group of components + objects and save them as a single user object - without needing to cluster them. This is useful when you want things saved that have internal UI elements - like a graph mapper or slider for instance - that you want to be able to manipulate with the reusable chunk of code you're saving.
Bottleneck Navigator opens up a window that lets you see all the components in your definition, sorted by their "Runtime" - how long it took them to execute. You can click on any item in the list and zoom to it instantly - so that you can find opportunities for optimization in your definition.
Members: 232
Latest Activity: Sep 13
Set the name, color, and style of a group.
Control the display of wires for parameters and components.
Set the text, size, and font of a Scribble.
Programmatically control the preview visibility of specified objects
Programmatically set the nickname of specified objects
Programmatically enable/disable solving for specified objects
Modify the form of an existing sketch object.
Programmatically bake the geometry of specified objects
Switch all document wires between hidden and faint.
Converts a standard GH Slider into a variable input to the Batch Driver
Saves a screenshot of every state of the model in the batch to a folder.
Converts a list of values such as a series or range into a variable input to the Batch Driver
Run a batch analysis across a range of variable parameters
Gets information about param objects
Gets basic information from any DocumentObject
Gets information about an assembly
Get information about a component object. Retrieve components with Document Info, Get Attached Component, or Get Selected Component.
Get information about the GH document and its components
Get all groups in the document
Gets all components and params connected to this component
Gets all components and params that are from the same library as the attached.
Get the objects currently selected on the canvas
Get all Scribbles in the document
Gets all components and params that are of the same type as the attached.
Gets all components and params in the same group as this component (or the specified group if supplied)
Takes a selected group and inserts input and output params at both edges for any data that goes outside the group.
Highlight objects by adding them a new group
Tries to set the value of an object. What value it sets varies by type - it sets a slider’s numeric value, a panel or scribble’s text contents, etc
Appends the directory this definition is saved in to a file path. Auto-converts the contents of a text panel containing an absolute path
plsthe most attractive functionwheres it nowthank you very muchContinue
Started by weilai Apr 10, 2019.
Please refer all metahopper-related questions to the metahopper category on discourse: …Continue
Started by Andrew Heumann Nov 1, 2018.
Hi Andrew,I am attempting to use your Enable/Disable toggle inside of a cluster and it does not appear to work. Is it possible I am doing something wrong or is this a known issue?Your plug-in is…Continue
Started by Ben Pearce. Last reply by Ben Pearce Jul 11, 2018.
Hey guys,I'm using the MetaHopper Enable/Disable component inside a Cluster and I realized that it only updates when I change a parameter (check the "Components Inside Cluster" part of the example…Continue
Tags: metahopper
Started by jeffchicarelli Jul 4, 2018.
Comment
AJ, you need to group the button with another grasshopper component/s
hi Andrew, how do you use the enable / disable button (like in the gif) ? thnx
Damn, MetaHopper is absolutely AWESOME! I wish I had known it from the time I started writing complex definitions, it would have saved days of work.
I am just figuring out component by component what are their purposes, I feel like a child on Christmas day :-) A special big up for the "Label Groups" and the "Bottleneck analyzer".
Thanks Andrew for this really good job!
Huh, weird things when you try to circumvent core grasshopper design I guess..
Throttling by Data Dam with boolean trigger is exactly what I'm trying for. (huh, setObjVal as opposed to expireObj threw me for a loop there) Thanks for the suggestion though!
Would you know why, when I connect a Data Recorder to this, the first time triggering will always double-trigger?.. subsequent triggers act as expected, if I clear the Recorder, the first value triggers twice again. Whether the behaviour's coming from the Dam or the Recorder ..
I should also mention that the Data Dam has an in-built "timer" of its own, that allows you to "throttle" your data as I think you're attempting to do.
Well Vongsawat, this one had me really puzzled. Every time I opened YOUR definition, it didn't work, and every time I reconstructed your definition, it worked without fail. Here is what I think is happening:
Grasshopper can only be computing one "Solution" at a time. In every solution, it only calculates "Expired" components - so that it avoids recalculating stuff which hasn't changed. The timer handles "expiring" the counter and scheduling a new solution - and so does the "Expire objects" component. Within a given solution, normal GH logic dictates that "upstream" components calculate first, and then passes that data long to other components further downstream. Now, since your metahopper rig does not involve conventional "wired" connections, there is nothing to tell grasshopper that the chunk of components with the counter needs to solve prior to the "param data" component retrieving the contents of the param downstream. Here is the really strange bit: In the absence of wired chains of dependency, Grasshopper decides which components should solve first BASED ON THEIR DRAW ORDER on the canvas. This means that, if you take your group of components with the counter and "Send to back" - everything works as expected. If you "Bring to front" you will consistently get an empty list from the param.
I think the reason your lower set occasionally returns proper values is that you click the "expire" at just the right time to insert a complete solution IN BETWEEN the solutions triggered by the counter/timer combo. With the upper configuration + faster timer, this is next to impossible.
So - all this is to say - by messing with the draw order, you may be able to cause this rig to work predictably - make sure you "bring to front" on all the metahopper components and "send to back" on the stuff you are listening to, in order to force it to compute first during any given solution. If this does not work, some sort of custom script may be necessary... but this strikes me as highly difficult.
I'd also like to suggest an alternative approach: you may find that using the data dam set to "Never" in a situation like this is preferable. It will circumvent solution logic such that even as the upstream components expire, the data is only passed through (and the downstream components expired) when you hit the "play" button. If you need to control this with a boolean value instead of the ui element itself, you can use metahopper "Set object value" on a data dam to cause it to recompute programmatically.
Thanks for a truly interesting puzzle - hope one of these solutions will get you where you need to be!
Best,
Andrew
two versions: The top one runs at 20ms, apparently too fast at least for my pc. The bottom one runs haphazardly as every 4th or so result is a null-result, sometimes more.
Vongsawat - I tried to rebuild your pictured definition but I am not able to reproduce the problem. Can you upload a file?
I have a bunch of data inputs that update at different rates, but I only want the main portion of my code to trigger when I say so (at random intervals)
I had thought using these components would solve this handily as SelObj would only grab the data whenever Expire turned true, but I can't have it output (and so trigger the entire code) with weird null-results, if that makes sense?
D'you think that's possible with MetaHopper? I've tried dipping my toes in to VB scripting but I've no background in VB at all so quickly got scared off.
Welcome to
Grasshopper
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
© 2024 Created by Scott Davidson. Powered by
You need to be a member of MetaHopper to add comments!