AutoCad :: Dynamic Bocks With Chained Arrays?

Apr 8, 2011

I've been trying to figure out if chaining parameters will accomplish what i'm trying to do, which is...

Imagine an elevation of a concrete pier or column showing the horizontal stirrup cage around the vertical reinforcement. If like to be able to use one parameter to control the space between elements (cage c/c) and another to control the total length of the array (height of column or # of cages). Then the actual number of elements would be total length/spacing.

Also, arrays alway seem to have fixed spacing, anyway to make the parameter control the spacing of the array?

View 7 Replies


ADVERTISEMENT

AutoCAD Inventor :: Non-Defined (Dynamic) Arrays In ILogic?

May 23, 2012

Is there a way to declare a non-bound array (dynamic array?) in iLogic?

There are examples of set bounds array:

MyDoubleValues = New Double(){1.2,2.2,3.3}

But doing something like:

Dim MyDoubleValues() As Double  ---Or---  MyDoubleValues = New Double()

Results in an error. On the other hand, the following totally works:

Dim MyDoubleValues(1) As Double

Which creates an array with a Ubound of 2

View 1 Replies View Related

AutoCAD Dynamic Blocks :: Create A Block That Polar Arrays Street Lamp

Jan 4, 2008

I am trying to create a block that polar arrays the street lamp, but every time i try i just move the grip for it, is there something i am missing?

View 8 Replies View Related

AutoCAD Inventor :: Mirroring And Arrays

Aug 6, 2012

I am currently looking into mirroring and arrays and i wondered if it is possible to have some kind of adaptive mirroring activated or used.

The aim is as i change the instance which is arrayed or mirrored i want the objects in the array and the mirrored parts changed too.

If it is´not possible just like that i would want to do a macro or i logic form that updates the array or mirror to have matching parts again. 

View 4 Replies View Related

AutoCAD Inventor :: Passing And Using Arrays In ILogic

Jul 14, 2012

I'm working on a small design project and creating a program in Inventor that utilizes a 2D Sketch to calculate the forces in a 2D static Bridge.... Although this is Besides the point.

In order to do what I want, I've found it will be easier to use Arrays. Unfortunately I'm having trouble passing arrays through various functions and setting them to each other.

These errors are constantly popping up 

Rule Compile Errors in Bridge Stress, in Sketch Test Code.ipt

Error on Line 60 : Number of indices is less than the number of dimensions of the indexed array.
Error on Line 63 : Number of indices is less than the number of dimensions of the indexed array.
Error on Line 69 : Number of indices is less than the number of dimensions of the indexed array.
Error on Line 174 : Number of indices is less than the number of dimensions of the indexed array.
Error on Line 308 : Number of indices is less than the number of dimensions of the indexed array.

Attached you'll find the code I'm using.

View 1 Replies View Related

AutoCAD 2013 :: Arrays And Attribute Information

Jul 23, 2013

Civil 3D 2014.I want to attach attribute information and/or metadata to my array. Is this possible?

If it is possible, I would also like to be able to explode my array and have my array items acquire the attribute information for exporting later. Can this be done as well?

View 1 Replies View Related

AutoCAD 2013 :: How To Create Large Arrays

Aug 9, 2012

I'm wondering how to create huge arrays in the best way.  I have a circle and want it thousands of columns and tens of thousands of rows.  Anytime I start to make this AutoCAD gets extremely slow and I was told that turning some into blocks would be best.

View 2 Replies View Related

AutoCAD 2013 :: Aligning Objects / Arrays

Jun 10, 2013

I am currently drawing a lithography mask in Autocad 2013 student version, where I created a lot of arrays. My problem is that I can't seem to align these structures. Some of them need to be aligned along the y-axis and some along the x-axis.

View 5 Replies View Related

AutoCAD Inventor :: Wind Loading On Solar Arrays

Jul 24, 2012

I am into tracking solar array's. So designing for high winds is paramount. I wonder if Inventor will have a package for analysis of wind loads. It is a different kind of FEA. Call it a 3-D distributed load.

View 5 Replies View Related

AutoCAD .NET :: Passing Late-bound Variant Arrays

Aug 22, 2012

I have been attempting to pass a string array contained in a variant to the AutoCAD method AcadPlot.SetLayoutsToPlot.  I am using late binding without a Interop assembly because we have several versions of AutoCAD in this company and I would like to support all of them from the same code base.The method wants a variant that contains a string array passed byref.  The Microsoft documentation on COM interop from VB.NET makes it sound like the compiler will marshal it correctly by default, but it always throws a COMException (Exception from HRESULT: 0x80070057 (E_INVALIDARG)).

The stack trace shows it is trying to anyway:

StackTrace:
       at Microsoft.VisualBasic.CompilerServices.LateBinding.InternalLateCall(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack, Boolean IgnoreReturn)
       at Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateCall(Object Instance, Type Type, String MemberName, Object[] Arguments, String[] ArgumentNames, Type[] TypeArguments, Boolean[] CopyBack, Boolean IgnoreReturn)

But no matter how I code it I cannot get this variant array passed to AutoCAD.I have tried:

Imports System.Runtime.InteropServices
' VB default marshalling
Dim layoutarr = New Object() {"Layout1"}
doc.Plot.SetLayoutsToPlot(layoutarr)
' using a VariantWrapper
Dim layoutarr = New Object() {"Layout1"}
Dim wrapper As New System.Runtime.InteropServices.VariantWrapper(layoutarr)
doc.Plot.SetLayoutsToPlot(wrapper)
[code]...

As intensively as AutoCAD ActiveX uses variant arrays, I know this problem is going to come up again and again for me as I try to migrate code over to .NET.

View 5 Replies View Related

AutoCAD 2013 :: Memory Management When Creating Huge Arrays

Aug 8, 2012

I am trying to make a huge array of circles (4000 x 12000 or so).  I work in microfabrication and need this to make a mask for lithography of a membrane.  What is the best practice to minimize the memory usage?  I.e. arrays, blocks, groups?  I tried making an array of circles one row and 4000 columns then making that a block.  Then repeating that block down for multiple rows, maybe 100, then making that a block.  Repeating this until I have thousands of them.  Is this the best way?  It bogs down and gets incredible slow which I am hoping to avoid.  I realize that it is inevitable that it will get slow with these huge numbers.

View 1 Replies View Related

Illustrator Scripting :: How To Put All Answers In Two Arrays

Jul 30, 2013

I'm working on a script with an UI element. I want all values of the 2. cloumn (Rasterkeilfarbe) returned in one array and all values of the 3. column (Klischeenr.) returned in another arry.
 
var farben = ["black", "red", "blue", "green", "bla", "blupp"]
var myName = myInput (farben);
// rest of the script

[Code]....

View 5 Replies View Related

Photoshop :: How To Make Arrays Or Repeat Objects In Circle

Feb 10, 2012

1 - How to make arrays without copying and pasting? Fig-1
2 - how to create objects repeated in circles? Fig-2

View 6 Replies View Related

Xara :: How To Make Watch Face Patterns And Arrays

Dec 7, 2012

I've just begun using Xara. I've used Corel before but can't see how to make pattern or arrays of objects in Xara. I'm needing to make mask templates for Watch faces, graphics mask for tire graphics etc.

View 4 Replies View Related

Revit :: Unable To Create Arrays Of Ceiling Light Fixtures

Jul 24, 2012

Having trouble creating arrays of ceiling light fixtures in Revit 2013? It gives me this error message;
 
'Can't place inserts outside of hosts. These elements won't be copied'
 
I've adjusted all manner of settings to make sure the copies don't fall outside the limits of the host ceiling but without success. It only occurs with linear arrays on ceilings not radial arrays for ceilings or linear or radial arrays for walls?

View 9 Replies View Related

AutoCAD Dynamic Blocks :: Link Dynamic Block Custom Rotation Action

Mar 22, 2013

So I've done a reasonable amount of work with dynamic blocks. I have a block with a rotation action and grip to arbitrarily align it.  However I realized when trying to combine it with an alignment grip (which actions on the basic or fundamental block rotation angle) that there didn't seem to be a way to some how link a dynamic block rotation action or one of the custom angle properties to a the fundamental block rotation angle.  Thus there are two additive rotations at work; the dynamic block one with its grip and the fundamental rotation property.

This can cause some confusion when one person aligns with the grip and another via rotating the block's fundamental property and would also be problematic in the generalized sense if one was trying to select or programmatically read back the net angle alignment.

View 2 Replies View Related

AutoCAD Dynamic Blocks :: Moving Properties Table Grip In Dynamic Block

Jun 13, 2013

I have a dynamic block, that represents a stirrup.

I inserted in the block a Block Propreties Table, that have some preset dimensions for the stirrups. The grip of this table I decided to put in the top right corner.

The problem is that I can't make this grip moveable )

See the attachement with the block

View 1 Replies View Related

AutoCAD Dynamic Blocks :: Flipping Dynamic Block With Multiple Items Not Visible

Jul 25, 2012

new to dynamic blocks but looking to streamline my wiring diagrams here and have created a block that shows the typical wire styles we use in a simple easy way.  I now want to add an overall flip to the entire block and have not been able to find set this.  I would prefer to use the same label and go from there.  I have included the block to show what I mean.  It is only working on the single visible item at the one time.  I know this has to be possible just let me know what I am doing wrong.  I am running AutoCad LT 2013 

View 3 Replies View Related

AutoCAD Dynamic Blocks :: Create A Dynamic Block For Glass Panel In Balustrade

Feb 28, 2012

I need to create a dynamic block for a "Glass Panel" in a balustrade. I need to be able to insert it, in one corner and stretch it in another corner, to suit the staircase angle.

I've created the block, but it isn't working correctly. I've attached a drawing, with the left hand drawing a sketch of how it needs to be. The right  hand drawing is my dynamic block attempt. As can be seen, when the block is stretched between the 2 points, it doesn't follow the angle of the staircase correctly (Very slight run off)

View 9 Replies View Related

AutoCAD Dynamic Blocks :: Insertion Point Of Attribute Changing Within Dynamic Block

Nov 21, 2011

I wish to create a dynamic block containing some attributes. These attributes are inside rectangles that can't be modified in length using linear parameters ; but the attribute has to be always in the middle of the rectangle. So, I draw a line inside the rectangle (in a hidden layer) and insert the attribute with center justification (not sure for the translation) that I place in the middle of this line ; then I put a coincidence constraint (not sure for the translation, but it's the first one) linking the middle of the line with the middle of the attribute.

But here's the problem : when stretching my rectangle, the insertion point of the attribute suddenly changes from "center" to "bottom left".

View 2 Replies View Related

AutoCAD Dynamic Blocks :: Pass Attribute Values To Dynamic Block Parameters?

Dec 4, 2013

I am looking for a way to use the ATTIN/ATTOUT workflow to bring in data from an excel spreadsheet to drive the size of each of my block's instances. The block will be simple, a rectangle, with width and length parameters. For each entity in my excel/csv file these parameter values are spelled out. I know how to display these parameters in my attributes, but I don't know how, if I were to feed in these values, to drive the geometry. If there's a better way to take a list of width and length values to generate a series of blocks each with a rectangle containing its respective size.

View 1 Replies View Related

AutoCAD Dynamic Blocks :: How To Disable The Dialog Box Shown When Open A Dynamic Block

Nov 7, 2011

I need to do some repetitive task on a lot of dynamic blocks, unfortunately, when I open each file, AutoCAD keeps asking if I want to open it with the block editor.

Is there a way to disable that dialog and open the files as normal dwgs?

A hint: BLOCKEDITLOCK doesn't make it, it shows another dialog...

View 4 Replies View Related

AutoCAD Dynamic Blocks :: Printing Dynamic Titleblocks With Visibility States

Feb 15, 2012

usage of dynamic title blocks with visiblity states and defining page setup override templates which use same for quick plotting using sheet sets.

I have attached a simple dynamic block that I built which is the outter frame of our company title block, it is designed to allow users to quickly switch between Landscape and Portrait orientations. 

The problem I am having is when I go to define page setups for my Sheet Set Page Setup Override Template I am unable to use the "Extents" option with auto-center because the "Extents", as defined by the page setup, includes ALL objects in the paper space regardless of visibility, so my title block ends up being centered in a stupid way if that printing configuration is used. 

The only solution I have found is to use the "Layout" option when defining page setups, but this option produces other issues in other ways when printing.  I don't want to use the "Window" option either for the potential for users to be using the page setup overrides to print drawings using different paper sizes or drawings that were not originally created using the current template the override is designed to accomodate.

Is there perhaps a system variable that defines whether invisible objects are included in the "Extents" setting in the page setup?  I'm sure you'll all agree that Extents is the way to go in this situation, but it is not performing exactly as required.

View 5 Replies View Related

AutoCAD Dynamic Blocks :: Make Dynamic Block Of Column Radiator

Mar 26, 2012

I'm trying to make a dynamic block of a column radiator.

It should be very simple. It's a 46mm wide module that comes in a range of heights (300, 500, 600, & 750mm) and a range of assembly widths (9, 13, 18, 22 & 27 modules wide - more commonly given as mm widths of 414, 598, 828, 1012 & 1242 respectively).

My attempt at constructing it has gone quite well, but when 'stretching' the block a ghost of the core 414 (w) x 300 (h) unit remains. I attach the block to give you a better idea of what I mean.

View 4 Replies View Related

AutoCad :: Insert Dynamic Block From File With Multiple Dynamic Blocks

Jul 16, 2010

I have a drawing ("SURUBURI.dwg") with several dynamic blocks ("M12", "M16", "M18" ... an so on...). I want to insert in my current drawing, one of the blocks from SURUBURI.dwg, for instance the block named "M12".

For that i tried creating a new command "INSERT_M12" that has the following script :

^C^C-INSERT; "I:/Ionut Mihaila/Goodies/SURUBURI.dwg/M12"

Now obvious that doesn't work, but i think it shows clearly what i want to accomplish. So is there an other way to do this?

View 9 Replies View Related

AutoCAD Dynamic Blocks :: Join Two Dynamic Block To One Common Action?

Sep 18, 2013

I'm working on a drawing and I want an action to work on two diffrent dynamic blocks. 

In my case, I wish to have two blocks that I can rotate by one rotation grip.

How do I manage to work this out?

View 1 Replies View Related

AutoCAD Dynamic Blocks :: Stretch Dynamic Block Grip Points

Feb 4, 2011

I have successfully created a dynamic block. I can insert it into AutoCAD, and it behaves like I want, except for one thing.

I can select the block and change it by taking a grippoint and place it at another position. So my block is e.q. stretched, just like I wanted.

But then. When I want to use the ordinary STRETCH command of AutoCAD, I can only stretch the insertion point of the block, but not the grippoints. Is there a way to set a grippoint to be select edable by commands like STRETCH.

View 9 Replies View Related

AutoCAD Dynamic Blocks :: Variable To Change Dynamic Grip Parameter Size And Color

Oct 11, 2012

What is the variable to change the dynamic grip parameter size and color.

View 3 Replies View Related

AutoCAD Dynamic Blocks :: Dynamic Door / Specific Parameters To Change Its Size And Orientation

Dec 13, 2013

I'm working on a dynamic door, that has specific parameters to change its size and orientation. Everything works pretty good, only the arc for the door won't react the way I want it.

View 8 Replies View Related

AutoCAD Dynamic Blocks :: How To Create WAVE Dynamic Block

Mar 1, 2013

I would like to create a "wave" dynamic block, see below...

It is made from wipeout.

Is it chance to make a similar?

If I make a list for the length (from 125 to 350), after can I make a table /list /summary where these size are shown?

View 9 Replies View Related

AutoCAD Dynamic Blocks :: Scaling Objects In Dynamic Block

Jun 27, 2013

Why the drawing title in my dynamic block will not scale up or down. The rest of the objects scale properly but just this the drawing title text attribute will not follow suit.

I tried adding position point and link, etc....I run out options and don't know how to fix this.

LT 2012 user

AutoCAD LT 2012
Windows 7 - 64 bit

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved