Results 1 to 1 of 1

Thread: Join Lofted forms in adaptive component family

  1. #1
    Login to Give a bone
    0

    Default Join Lofted forms in adaptive component family

    I know , if the two LoftForm do not share one face, they will not join together. In my case I have common edge curve, but no common face.


    I guess it is a quation regarding Merging Surfaces via API.
    I tried with this code below, it did not work obviously.
    Please some one tell me how can I join two LoftForm(Surfaces in my case) when they are sharing only one edge curve in between

    I have a list of lofted Forms elements in an adaptive component family. I tried as below, but I know it is not supposed to work.. Lofted Forms(Surfaces) are coming from :

    Form Loft_form1 = null;
    Loft_form1 = document.FamilyCreate.NewLoftForm(true, ref_ar_ar1);
    Plates_array_1.Add( Loft_form1);
    Form Loft_form2 = null;
    Loft_form2 = document.FamilyCreate.NewLoftForm(true, ref_ar_ar2);
    Plates_array_1.Add( Loft_form2);


    two Loft_form s are sharing one edge curve but they are not overlapping. They are just sharing same edge curve at an edge.

    Now I want to join them, as bellow.
    But it is not working. Any advise will be very helpfull. Please help.


    CombinableElementArray ceArray = new CombinableElementArray();

    for (int i = 0; i < Plates_array_1.Count; i++)
    {
    ceArray.Append(Plates_array_1[i]);
    }

    using (Transaction t = new Transaction(document, "Combine Elements"))
    {
    t.Start();
    GeomCombination geomCombination = document.CombineElements(ceArray);
    t.Commit();
    }
    Last edited by rajia.khanom710778; 2015-10-10 at 12:16 PM.

Similar Threads

  1. 2014: Adaptive Points in Component Family Appearing Red
    By cody_winchester659518 in forum Revit Architecture - General
    Replies: 1
    Last Post: 2015-02-13, 03:35 PM
  2. 2015: BIM object in adaptive component?
    By kerber.g685733 in forum Revit Architecture - General
    Replies: 1
    Last Post: 2014-12-17, 09:54 PM
  3. 2014: HELP: Adaptive component + nested family + locked position = broken panel. Why!?
    By jesse.pyeatt674861 in forum Revit Architecture - Families
    Replies: 1
    Last Post: 2014-09-16, 04:29 AM
  4. 2013: Creating holes in adaptive component family
    By bjwade62 in forum Revit Architecture - Families
    Replies: 12
    Last Post: 2013-08-06, 08:34 PM
  5. 2013: Nested adaptive component family wont flex in parent family
    By Steve_Bennett in forum Revit - Conceptual Design Tools
    Replies: 3
    Last Post: 2013-07-19, 01:15 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •