- 37
- 255 779
Rhino.Inside.Revit
United States
Приєднався 11 кві 2020
The Rhino.Inside.Revit brings the power of Rhino WIP and Grasshopper to the Autodesk Revit® environment
Rhino.Inside.Revit Tips for Large Projects
6 fundamental grasshopper tips for working in large Revit Projects.
Переглядів: 2 167
Відео
Elefront 00 - Introduction
Переглядів 3,4 тис.Рік тому
Some background and overview of the Elefront Essentials series.
Elefront 06, 07, 08 - Baking, Data, Params
Переглядів 3 тис.Рік тому
Elefront 06, 07, 08 - Baking, Data, Params
Understanding View Creation in Rhino.Inside.Revit
Переглядів 1,7 тис.Рік тому
Create views with a Plane, Line, Rectangle or Box in Revit.
Introduction to Graphic Overrides in Rhino.Inside.Revit
Переглядів 1,9 тис.Рік тому
discourse.mcneel.com/t/introducing-graphics-overrides-in-rhino-inside-revit/155605
Rhino.Inside.Revit Fundementals of Direct Shapes
Переглядів 5 тис.2 роки тому
A shallow dive into what Direct Shapes are and the differences compared to 'Real' Revit Elements discourse.mcneel.com/t/what-are-direct-shapes/153739
Copenhagen Workshop
Переглядів 7792 роки тому
Python for Revit Introduction: Pyrevit, Rhino.Inside.Revit.
Rhino.Inside.Revit Wavy Facade -Graph Mapper
Переглядів 2,9 тис.2 роки тому
Creating Revit Direct Shapes by using Graph Mapper in Grasshopper.
Topography Workshop June 2022
Переглядів 3,2 тис.2 роки тому
Various Rhino.Inside.Revit Topography Workflows Example files : www.notion.so/yourbim/Workshop-Page-ff9267806a78410f87e3b5432e3d0452 Rhino.Inside.Revit Forum Post: discourse.mcneel.com/t/dla-topography-workshop/145299
Create custom family templates in Revit using Rhino.Inside.Revit
Переглядів 5 тис.2 роки тому
Create custom family templates in Revit using Rhino.Inside.Revit
RhinoInside Revit Facade: Flex Curtain Panel
Переглядів 8 тис.2 роки тому
RhinoInside Revit Facade: Flex Curtain Panel
RhinoInsideRevit: 3 Things You Need to Know
Переглядів 1,5 тис.2 роки тому
RhinoInsideRevit: 3 Things You Need to Know
Creating Revit Floor Elements that follow topography.
Переглядів 2,1 тис.2 роки тому
Creating Revit Floor Elements that follow topography.
DirectShape Schedules Example Rhino.Inside.Revit
Переглядів 4,3 тис.3 роки тому
DirectShape Schedules Example Rhino.Inside.Revit
Getting Setup with Rhino.Inside.Revit
Переглядів 30 тис.4 роки тому
Getting Setup with Rhino.Inside.Revit
Revit Render Materials (Appearance Assets) in Grasshopper and Rhino.Inside.Revit
Переглядів 3 тис.4 роки тому
Revit Render Materials (Appearance Assets) in Grasshopper and Rhino.Inside.Revit
Basic Revit Materials in Rhino.Inside.Revit
Переглядів 7 тис.4 роки тому
Basic Revit Materials in Rhino.Inside.Revit
Create Native Revit Elements with Rhino.Inside.Revit
Переглядів 20 тис.4 роки тому
Create Native Revit Elements with Rhino.Inside.Revit
Organize Rhino Geometry into Revit Subcategories
Переглядів 13 тис.4 роки тому
Organize Rhino Geometry into Revit Subcategories
Rhino models into Revit for quick drawings with Rhino.Inside.Revit
Переглядів 9 тис.4 роки тому
Rhino models into Revit for quick drawings with Rhino.Inside.Revit
my grasshopper - in revit interface is totally different. Can someone explain me?
might be a dumb question but I'm very new to grasshopper and I can't for the life of me figure out what the first box used to specify the view name is... tried with just a panel and text but doesn't seem to work...
Hey! It's great to use RhinoInside. But the Revit keeps locking. No resolve to this issue until now?
thanks for video, but i dont see filter by color with my elefront, the number 6 on the icon also no visible., I installed the newest on grasshoper? can you help me
It would great if you would use the bifocals to be able to follow what you are doing. Great information, but not very useful if you don't know exactly what are you looking at
really amazing videos :) one question: how did you manage to for the name of each function to appear above it. Like "Define Color" etc
its a component called bifocals
Don't you think the name of the video should be "Revit to rhino"
Hi! Very well explained. Is there a way to remove direct shapes? Or rename them somehow? I work with timber houses and import my trusses as .IFC. After i import the IFC i bind the link so I can move trusses independently. The geometry from the link converts to "generic models: direct shape". However, if the trusses gets modified and i want to import them and bind the link again i get an error message saying that the names of the new direct shapes clashes with the old ones, and the old ones will be used. This causes my truss-geometry to look like the old, unmodified ones. Or look like a forest after a hurricane. This worked without any problems in revit 23 so I think this is a side-effect of a feature of revit 24.
Hi, thank you for sharing this video...how can I filter lines by linetype?
thank you for the presentation
hi i downloaded this but don't have deconstruct block
likewise
Python Script Text here: """Provides a scripting component. Inputs: G: Geometry to bake L: Layer name for bake B: Bake Activate Output: a: The a output variable""" __author__ = "ScottD" __version__ = "2019.08.10" import rhinoscriptsyntax as rs import scriptcontext import Rhino scriptcontext.doc = ghdoc if B: #debug message to Python output print(type(G)) #we obtain the reference in the Rhino doc doc_object = rs.coercerhinoobject(G, True, True) print(type(doc_object)) attributes = doc_object.Attributes print('the type of attributes is: ' + str(type(attributes))) geometry = doc_object.Geometry print('the type of geometry is: ' + str(type(doc_object))) #we change the scriptcontext scriptcontext.doc = Rhino.RhinoDoc.ActiveDoc #we add both the geometry and the attributes to the Rhino doc rhino_brep = scriptcontext.doc.Objects.Add(geometry, attributes) print('the Rhino doc ID is: ' + str(rhino_brep)) #we can for example change color in Rhino... # rs.ObjectColor(rhino_line, color) if not rs.IsLayer(L): rs.AddLayer(L) rs.ObjectLayer(rhino_brep, L) #we put back the original Grasshopper document as default scriptcontext.doc = ghdoc a = rhino_brep
did we confirm this works?
I was brought to this UA-cam video while looking for a wat to automate tidying up my Revit analytical model. I don't know Rhino so is there a way that this can be downloaded?
Nice sample, keep it up, more video.
wowww this is amazing, please do more of these, we would like to see repetitive tasks in Revit to be done faster with rhino.
Thanks for the video! Can you tell me how else to prescribe the area in the panel?
How do i bake the linear dimension? Im getting geometry mismatch error
Does that work with walls or curtain walls families?
Hi, thank for the viseo! i have question for you, is it possible to control the phasing of the rhino geometery ? i mean can we adjust the phasing in grasshopper b4 importing to revit?
thanks !!!
Hi, is there any resource or tutorials for the newest release? Thanks
Any chance anyone managed to find the Python script he said was in the description or the guide?
I cannot find it here or in their website :(
Hi, Is there a deconstruct element aside from parts of the element in RhinoInsideRevit
Hallo , I met a Problem.When I want to assign two Keys to multiple objects, and at the same time the two Keys of multiple objects correspond to different Values, there is an error in matching. How can I solve it?
Hi, I followed the video's instruction and created my stair family template. But it seems that Revit doesnot allow this category to be used. It says: "the input category id cannot be assigned as the new category for this family". Could you please give further instruction about how I can use the template in Rhinoinside which this video hasnot really shown.
Great video! I was just wondering, how are your nodes annotated? This is not Bifocals is it?
Sunglasses
Great Video. Thank you
The info of the video is really valuable. I have watched all your videos and lately they are lacking some energy! I closed my eyes during the explanation at some point, so keep it up :) Just a tiny piece of advice because I think that with your RhinoInside knowledge you are the guru of it by far.
Hello!!! First of all, thanks for this amazing plugin and tool for us to be able to work with. I have a question, why is my Direct Shape Geometry Being Imported as a "whole" in Revit. Basically, I mean I can't select individual Brep Rhino Geometry that has been sent to Revit with a Single AddDirect Geometry Direct Shape Component
Please share the python script
Hi there. Thanks for this video. Iam trying to create a section at each grid and want to use the standard looking direction of up or to the left. How would I go about doing this with RIR?
How come the Reference by BackeName has input the values of the box in the fira plCE. Can you be a bit more cleare on the process please.
It is Revit to Rhino process, non?😁
Hi Could you pls share the scripts in the showcase? I am trying to build the script but there are many insert info inside of components.
any chance uploading RVT? i’m curious of system family version of your column
it's funny how Rhino inside documentation for Revit is better than Autodesk documentation for Revit....
great explanation. thanks for sharing!
Hi, how can you have the name above the gh component when in "draw icon" mode? Is there any plugin or addin for that? thanks !
Hi,how can i create a Work Plane-based Family by Rhino.Inside.Revit?
You can create a new family template that has the Work Plane option checked.
How did you originally create the User Text? Was it parametric based on their location and fed through Grasshopper (or C# / Python Script) as I can't seem to find a native way (purely GH without programming languages) to drive numbering and naming the individual panels. Help, thanks!
This is a great tutorial! Exactly what I’m looking for for the result. I have one question, I am a Rhino user and I don’t use Revit. How can I implement this grasshopper script in Rhino without Revit? Thank you!
Very nice!!! It would be very useful if you explain more how to create not generic models but real Revit Elements and Families from Rhino. Or if You could explain more in depth how is your proyect modelling Workflow. Thanks for all your explanations! 🙌🙌
👎🏻
Great video. I know that it's not supported to host components on topo through rhino.inside, but Is it possible to host trees/components through revit side on a topo created from rhino.inside?
Hi Johan, Thanks for the comment. In this case we are using the distance to from the trees to the mesh determined in GH to change the tree locations, so not actually hosted.
how can the adaptive facade components be associated with an actual revit curtain wall, the way one would draw it in Revit?
there's no links
Great tutorial thanks!
Great idea and "go through" video, thanks!
But where is Rhino Script I have been looking there is no any link, that will be very helpfull
Where can I find the Python script?