AutoCAD .NET :: 3D Solid Bounding Box

Jan 11, 2012

I would to know if there is a way with vb.net for extract the bounding box coordinates of a 3d solid

View 1 Replies


ADVERTISEMENT

Photoshop :: Bounding Box To Bounding Circle

Mar 21, 2005

Can the bounding box be adjusted, in shape, to a circle?

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Select Non-solid Entities On Solid Layer

Mar 19, 2012

We have this need to have all of the solids in a drawing to be placed in the "solid" layer.

Sometimes folks are drafting lines to develop these solids, and keeping the lines on the "solid" layer, rather than moving them to another layer, or deleting them altogether.

I could get folks to run this command before leaving the drawing.

I'm thinking something along the lines of:

Select all entities that are on the solids layer that are not solids.

If nil, great, do nothing.

If entities are selected, let me do something with them.

I'm hoping the following can be modified ever so slightly.

 (setq non_solid (ssget "X" (list (cons 0 "3DSOLID")(cons 8 "solid"))))

View 4 Replies View Related

AutoCAD Inventor :: Split A Single Solid Body Into 2 Solid Bodies?

Sep 19, 2012

I'm trying to split a single solid body into 2 solid bodies. The problem is that the body I'm trying to split consists of two separate pieces. I can split a body when it is a single piece no problem, but I'm having the problem when the two pieces are not joined at all.

When I try and split it on the origin plane it gives this error:

"Creating parting line failed. Could not build this Split"

When I try and split it on a work plane lying on one of the pieces it gives this error:

"Creating parting line failed. Modeling failure in ASM. Redefine inputs."

Or, another variation on this erorr:

"Creating parting line failed. Split feature could not create two bodies. Change the Split Tool so that split feature can create two bodies."

View 4 Replies View Related

AutoCAD Civil 3D :: Import 3D As Solid Objects Or Convert Polymesh To Solid

Jun 18, 2013

I have a.3ds file imported into Civil 3d. The object imported as a polymesh in Civil 3d. I need the solid 3d object to do some edit like slice or union and subtract.

The question is "How can I import .3ds into Civil 3d as a solid objects or hoe can i convert polymesh to solid?"

View 9 Replies View Related

AutoCAD 2013 :: Converting Complex Solid Surface To Solid Model

Aug 12, 2013

I have finally created the shell of the complex surface that you see. This is only a section of the part because I cannot show the whole thing for proprietary reasons. I formed solid surfaces using the network command. The propblem is that it will not convert to a solid because the surface seams are not "water tight." When the network command created the solid surfaces, the surface seams do not exactly match the lines so there are gaps in all the seams. I have tried blending, patching, etc. and nothing works. how to convert this to a solid without losing the outlines and the shape?

View 3 Replies View Related

AutoCAD 2010 :: Remove Line Inside Solid Object / Transparent Solid Objects?

Sep 16, 2013

How can I remove the lines in the middle after I press and pull the objects.

Attached is the Untitle.jpg, to make more clearer to you. Blue is the wall and skyblue is the aquarium. I want the back and the front of the aquarium don't have any line in the middle but even I do shade command the fill of the color is still there. Cause if I explode and delete the line in the middle the colors that fill the aquarium are getting rid off See Untitled 2.Jpg to see what I mean. And also how can make the aquarium Untitle 3.jpg transparent?

View 9 Replies View Related

AutoCAD 2013 :: Trim A 3d Solid Using Another 3d Solid As A Cutting Edge?

Aug 27, 2013

Is it possible to trim a 3d solid using another 3d solid as a cutting edge? I want to cut the edges of a dam using the natural ground surface (which is also a solid) as my cutting edge.

View 3 Replies View Related

AutoCad 3D :: Trim Diagonal 3D Solid To Top Of Horizontal 3D Solid In Picture?

Jul 10, 2013

Is there away to trim the diagonal 3d solid to the top of the horizontal 3d solid in the picture.

View 4 Replies View Related

AutoCAD Inventor :: Make Solid / Change Parameter Of Solid

Nov 18, 2012

I am making a design on inventor 2013 for a colleague who does not know how to use the inventor.

I want to make the solid and then set something up that allows the user to change a few of the parameters of the solid in a very user friendly way (i.e. a box that says "cylinder radius" and has an input box so the user can enter a value).

View 9 Replies View Related

AutoCAD 2013 :: Hatching Looking Solid But Its Not A Solid Pattern

Dec 13, 2012

i am having a hatching issue, it seems no matter what hatch pattern i use and what hatch scale, alot of the hatch looks solid instead of the pattern i want, for example i am using currently ANSI37 @ Annotative with a scale of .20 and on the same paperspace page one plan with the hatch shows the cross hatching and the other one below looks solid (see attached) now i can go and say change the hatch scale and it reverts to the cross hatching, but then when i zoom out it goes back to "solid" is it a graphical issue?

View 7 Replies View Related

AutoCad 3D :: Subtract Smaller Solid From Bigger Solid

Nov 7, 2012

I want to subtract smaller solid from bigger solid.I can not understand how to move smaller solid and place it in front of bigger solid.

View 6 Replies View Related

AutoCad 3D :: Convert Some Solid Bodies To Single Solid?

Dec 1, 2006

How can i convert some solid bodies to a single solid.

View 8 Replies View Related

AutoCAD .NET :: How To Get Min And Max Bounding Points

Nov 21, 2011

In vba, i wrote, ENT_A1.GetBoundingBox MinBndPt, MaxBndPt but in vb.net how can i get the Min and Max bounding points?

View 2 Replies View Related

AutoCAD .NET :: How To Get The Bounding Box Of A Drawing

Oct 1, 2013

I'm using the following code to take a snapshot of the model:

 private Bitmap GetScreenshot() { int cvPort = Convert.ToInt32(Application.GetSystemVariable(RenderingManager.CVPORT_SYS_VAR)); using (View view = new View()) { this.graphicsManager.SetViewFromViewport(view, cvPort); view.VisualStyle = new VisualStyle(VisualStyleType.Hidden); using (Device dev = this.graphicsManager.CreateAutoCADOffScreenDevice()) { dev.OnSize(graphicsManager.DisplaySize); dev.DeviceRenderType = RendererType.Default; dev.BackgroundColor = System.Drawing.Color.White; dev.Add(view); dev.Update(); using (Model model = graphicsManager.CreateAutoCADModel()) { using (Transaction transaction = this.database.TransactionManager.StartTransaction()) { BlockTable blockTable = (BlockTable)transaction.GetObject(this.database.BlockTableId, OpenMode.ForRead); BlockTableRecord blockTableRecord = (BlockTableRecord)transaction.GetObject(blockTable[BlockTableRecord.ModelSpace], OpenMode.ForRead); view.Add(blockTableRecord, model); transaction.Commit(); } Bitmap bitmap = view.GetSnapshot(view.Viewport); view.EraseAll(); dev.Erase(view); return bitmap; } } } }

 I'm currently passing the entire viewport to the GetSnapshot method, but I'd like to restrict it to the minumun rectangle containing the drawing. The following image explains what  I mean (in red the viewport, in black what i need):

how can I compute the black rectangle?

View 2 Replies View Related

AutoCAD .NET :: Bounding Box Values

Jul 2, 2013

I am new to autocad customization and i am working on modifying a code written in .Net.I want to ask how to get the bounding box of a block and also I am unable to locate autocad customization file.

View 6 Replies View Related

AutoCAD .NET :: Bounding Boxes Around Blocks

Apr 3, 2013

We have two lines which are crossing. Now I want to find bounding box as shown on the picture.

Do we have some special methods (in AC) or I must find bounding points manually?

View 2 Replies View Related

AutoCAD .NET :: Get All 4 Values Of Bounding Box For Particular Object?

Jul 3, 2013

Is it possible to get all the 4 values of the bounding box for a particular object.I have to plot a curve of maximum point for a particular object on a given path at certain intervals(ex: a block on a curved line and distance between each block should be maintained say 10mm).The problem im facing when im connecting the maximum points is if the path is inclined then the maximum point coonecting line intersects the block at some places.

View 3 Replies View Related

AutoCAD .NET :: How To Get Bounding Box Of Dimension Text

Apr 13, 2011

I wrote a dimensionroutine and want to put the dimensiontext on a home or upper position depending the space the dimensiontext needs and is nearby the last created.

With the boundingbox of the dimensiontext I hope to calculate if the dimensiontext will fit between his two dimensionblocks

View 1 Replies View Related

AutoCAD LT :: Bounding Boxes Around Blocks

Apr 27, 2011

How can I switch this new feature off?

I'm selecting a block by mistake by clicking on an area which overlaps the bounding box outline.

View 3 Replies View Related

AutoCad :: Expanding Bounding Box Around Attribute

Jan 4, 2012

Is it possible to have a box, that surrounds an attribute, increase or decrease it's width based on the width of the attribute text?

View 0 Replies View Related

AutoCAD Civil 3D :: PCG Point Cloud Bounding Box?

May 18, 2012

Using Civil 3D 2013, Faro Scene 4.8.2.25521, Kubit PointCloud Pro 8.0.4.7.

Is it possible to turn off the bounding box on a non-Civil 3D, .PCG point cloud that was indexed into Civil 3d directly from the Faro .FWS file using the "POINTCLOUDINDEX" command?

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Text With Bounding Box

Jan 13, 2012

I use the bounding box (vla-getboundingbox) to assess parameters of blocks.  These blocks have text on some of the faces that extends beyond the simple dimensions of the blocks themselves.  I'm wanting to have bounding box ignore the text and can't sort it out.  I've tried putting the text on a separate layer and turning it off and freezing it.  

 I've considered looking at sub entities and filtering out the text but I don't know if there is a solution here or not.  

View 5 Replies View Related

AutoCad :: Draw Bounding Box Centered Around Group Of Objects?

Oct 21, 2012

I have a drawing of several walls (so different lines, dimensions, text). I want to draw around it a box of certain size (actually, 1:5 A4) so that it will be centered in the box.

View 4 Replies View Related

AutoCAD LT :: Hatch Message - Proxy Metafile Contains Bounding Box / Not Exploded

Dec 3, 2013

why, when I try to hatch something, I get a message saying "Proxy metafile contains bounding box. Not exploded".  Nothing happens until I escape, and then I'm back to where I started with nothing hatched.  I have other drawings xreferenced into mine, but I am not using them as the hatch boundaries. 

View 5 Replies View Related

AutoCAD 2010 :: MTEXT Bounding Box Width With Background Mask

Jun 14, 2012

If I create one MTEXT object with the Background Mask set to Yes, then COPY it to several locations, and lastly edit the text for each one, does the width of the bounding box have to be adjusted for the width on each individual peice of MTEXt, or is there an "autofit" option? 

The Background Masks are either too narrow or too wide on the copied items.

View 7 Replies View Related

AutoCAD Inventor :: Find ILogic Sketched Symbol Bounding Box?

Jul 31, 2013

Is there any way to obtain the width and height or bounding box of a sketched symbol?

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Bounding Box Of Block Definition

Nov 8, 2011

How i can calculate bounding box of a BLOCK definition ? I know after inserting a block, we can get bounding box of a block reference.

But how can i get bounding box before insert? Assuming that i never going to scale or rotate it.

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Draw Bounding Box At Current UCS

Oct 16, 2013

The first rectangle is drawn from 0,0 at the World Coordinate System. There is never any trouble with the code below when the objects are drawn at the WCS. The problem is when I try to draw a bounding box around an object while in another UCS. It seems that it always draws the bounding box at the WCS instead of my UCS. I have used (trans <pointlist> 0 1) on all combinations it seems and I still cannot get it to draw the bounding box at the current UCS. 

(defun c:GetFromBoundingBox (
/
*ACAD_DOCUMENT*
mspace 
pSelectedObject
lwLeft
upLeft
lwRight
upRight
[code]...

View 9 Replies View Related

AutoCad :: Expand / Shrink Bounding Box Around Tag Block Depending On Text Width

Aug 29, 2013

I have a tag block that calls out details. The attributes are the detail number and the page the detail is located. I was wondering if there was a way that the bounding box around it could grow or shrink depending on the width of the text.

Tag.jpg

View 0 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Bounding Boxes Around Items With Extrusion Vector

Apr 1, 2013

I have 3d items exported from sketchup, that have extrusion vectors to them.the VLA-GETBOUNDINGBOX lisp function seems to return values from the block's coordinate system.

I need values as if there was no extrusion vector, in WCS.I am not clear on how to do this, as it seems like I want a fundamentally different box.Is there a way to recalc the box orthogonal to world coord system for each insert of the block? URL....

View 3 Replies View Related







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