DynamoDS / Dynamo

Open Source Graphical Programming for Design
https://dynamobim.org
Other
1.71k stars 628 forks source link

v.7 topo element geometry is not being extracted #1649

Closed marcellosgamb closed 10 years ago

marcellosgamb commented 10 years ago

v.7 topo element geometry is not being extracted Would prefer it extracts mesh (points already extracted via Topography.Points Would like to see Topography.Mesh Thanks

issue

pboyer commented 10 years ago

Yeah, definitely an issue. Wouldn't it make more sense for Element.Geometry to just return a Mesh from which you could extract points?

marcellosgamb commented 10 years ago

Yes Sure That would be great

Sent from my iPhone

On May 13, 2014, at 11:57 AM, "Peter Boyer" notifications@github.com wrote:

Yeah, definitely an issue. Wouldn't it make more sense for Element.Geometry to just return a Mesh from which you could extract points?

— Reply to this email directly or view it on GitHub.

pboyer commented 10 years ago

Hi Marcello,

I've fixed this issue in the latest daily build.

topologygeometry

marcellosgamb commented 10 years ago

Peter I see that mesh Nice can't wait to try it You see that design script question I had? Geometry.reflect(?,?) Marcello

Sent from my iPhone

On Jun 9, 2014, at 1:11 PM, "Peter Boyer" notifications@github.com wrote:

Closed #1649.

— Reply to this email directly or view it on GitHub.

pboyer commented 10 years ago

Hi Marcello,

No - I don't see that issue. Can you forward me the link?

BTW, I've also added a Topgraphy.Mesh.

image

marcellosgamb commented 10 years ago

Oh ya

Sent from my iPhone

On Jun 9, 2014, at 1:24 PM, "Peter Boyer" notifications@github.com wrote:

Hi Marcello,

No - I don't see that issue. Can you forward me the link?

BTW, I've also added a Topgraphy.Mesh.

— Reply to this email directly or view it on GitHub.

marcellosgamb commented 10 years ago

Fyi

Sent from my iPhone

Begin forwarded message:

From: "M S" marcellojs@hotmail.com To: "Zachary Kron" zachary.kron@autodesk.com, "ian.keough@autodesk.com" ian.keough@autodesk.com, "matthew.jezyk@autodesk.com" matthew.jezyk@autodesk.com, "luke.church@autodesk.com" luke.church@autodesk.com Subject: the stand alone cow in dynamo zachit was always my intention to make the cow in one design script (node) a single node you could copy and paste...i got to the very end and stopped short because i think the geometry reflect node only works as a node and not in design script because the ports on the node asks for geometry and a planewhile the design script just asks for a plane.... where to i specify the geometry in design script????? did I miss something?then i could make the cow in one node...then double click on dynamo canvascopy and paste runcow done lol also note that it takes about 10 years for the cow surface to show up from low rez to high rez marcello

From: Zachary.Kron@autodesk.com To: marcellojs@hotmail.com Subject: RE: files with lots of ref points are buggy super buggy Date: Sun, 8 Jun 2014 22:05:18 +0000

Thoughts: 1.)
You crazy 2.)
This is not recommended 3.)
If you are going to do this . . . I really recommend not ever making reference points. There is a tremendous amount of overhead involved in making them, both in terms of overloaded Revit elements (they have names, references, 3 planes each, etc) and creation (there is a transaction for each). Ref points are really only useful when you are in the ui building stuff, not here. With the old geometry, it was a little more necessary, in order to get at some surfaces using loft form. With ASM, I would just go with geometry.import. Although . . . I see that it doesn’t all come in using import . . . might need to inspect this . . . but I would still recommend this route. 4.)
After creating half the cow, you can easily create the other half using the reflect transform.

From: M S [mailto:marcellojs@hotmail.com]

Sent: Sunday, June 08, 2014 4:45 AM

To: Zachary Kron

Subject: files with lots of ref points are buggy super buggy

Zach

i made a dynamo def that recreates (half) of the revit cow from scratch

see here

open and open a blank mass or ac family and hit run

you will see what i mean

the image is what it produces with some great buggy...ness

any thoughts?

marcello

pboyer commented 10 years ago

Hi Marcello,

Here's an instructive example:

image

Reflect is a "method" of Point which is a type of Geometry. Any kind of Geometry will have this reflect method.

The method in DS looks a bit different than the node.

refPt = pt.Reflect( pl );

~Peter

marcellosgamb commented 10 years ago

Oh I see you put the geometry first Geometry.reflect(plane

Will try I was trying to Do geometry.reflect(geometry,plane) Just like most nodes? Is this unique?

Was confused Thx !

Sent from my iPhone

On Jun 9, 2014, at 1:41 PM, "Peter Boyer" notifications@github.com wrote:

Hi Marcello,

Here's an instructive example:

Reflect is a "method" of Point which is a type of Geometry. Any kind of Geometry will have this reflect method.

The method in DS looks a bit different than the node.

refPt = pt.Reflect( pl );

~Peter

— Reply to this email directly or view it on GitHub.

pboyer commented 10 years ago

All methods are like this in the DS code - this is not an exception.

e.g.

Point.ByCoordinates( 0, 0, 0 ); pt.X; // returns 0 pt.Translate(1, 2, 3); // returns new point at 1, 2, 3

box = Cuboid.ByCorners( Point.ByCoordinates( 0.5, 0.5, 0.5 ), Point.ByCoordinates(1, 1, 1 ) ); pt.GetClosestPoint( box ); // returns Point at 0.5, 0.5, 0.5

Find more here: http://designscript.org/manual.pdf, although a lot is out of date...

On Mon, Jun 9, 2014 at 4:46 PM, marcellosgamb notifications@github.com wrote:

Oh I see you put the geometry first Geometry.reflect(plane

Will try I was trying to Do geometry.reflect(geometry,plane) Just like most nodes? Is this unique?

Was confused Thx !

Sent from my iPhone

On Jun 9, 2014, at 1:41 PM, "Peter Boyer" notifications@github.com wrote:

Hi Marcello,

Here's an instructive example:

Reflect is a "method" of Point which is a type of Geometry. Any kind of Geometry will have this reflect method.

The method in DS looks a bit different than the node.

refPt = pt.Reflect( pl );

~Peter

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45541835.

marcellosgamb commented 10 years ago

Thx I Get it Maybe it's the methods with out the constructors (no .By.....) so not when you want to make something but want to do something with elements

Reflect Translate Get closest point For example then it goes in front

Just trying to reason it I love design script Thx!!!!

I read the manual or some of it!

Sent from my iPhone

On Jun 9, 2014, at 1:53 PM, "Peter Boyer" notifications@github.com wrote:

All methods are like this in the DS code - this is not an exception.

e.g.

Point.ByCoordinates( 0, 0, 0 ); pt.X; // returns 0 pt.Translate(1, 2, 3); // returns new point at 1, 2, 3

box = Cuboid.ByCorners( Point.ByCoordinates( 0.5, 0.5, 0.5 ), Point.ByCoordinates(1, 1, 1 ) ); pt.GetClosestPoint( box ); // returns Point at 0.5, 0.5, 0.5

Find more here: http://designscript.org/manual.pdf, although a lot is out of date...

On Mon, Jun 9, 2014 at 4:46 PM, marcellosgamb notifications@github.com wrote:

Oh I see you put the geometry first Geometry.reflect(plane

Will try I was trying to Do geometry.reflect(geometry,plane) Just like most nodes? Is this unique?

Was confused Thx !

Sent from my iPhone

On Jun 9, 2014, at 1:41 PM, "Peter Boyer" notifications@github.com wrote:

Hi Marcello,

Here's an instructive example:

Reflect is a "method" of Point which is a type of Geometry. Any kind of Geometry will have this reflect method.

The method in DS looks a bit different than the node.

refPt = pt.Reflect( pl );

~Peter

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45541835.

— Reply to this email directly or view it on GitHub.

marcellosgamb commented 10 years ago

Oh one more thing When will Imperative statements going to be supported in code block ? What to loop with design script Thx Marcello

Sent from my iPhone

On Jun 9, 2014, at 1:53 PM, "Peter Boyer" notifications@github.com wrote:

All methods are like this in the DS code - this is not an exception.

e.g.

Point.ByCoordinates( 0, 0, 0 ); pt.X; // returns 0 pt.Translate(1, 2, 3); // returns new point at 1, 2, 3

box = Cuboid.ByCorners( Point.ByCoordinates( 0.5, 0.5, 0.5 ), Point.ByCoordinates(1, 1, 1 ) ); pt.GetClosestPoint( box ); // returns Point at 0.5, 0.5, 0.5

Find more here: http://designscript.org/manual.pdf, although a lot is out of date...

On Mon, Jun 9, 2014 at 4:46 PM, marcellosgamb notifications@github.com wrote:

Oh I see you put the geometry first Geometry.reflect(plane

Will try I was trying to Do geometry.reflect(geometry,plane) Just like most nodes? Is this unique?

Was confused Thx !

Sent from my iPhone

On Jun 9, 2014, at 1:41 PM, "Peter Boyer" notifications@github.com wrote:

Hi Marcello,

Here's an instructive example:

Reflect is a "method" of Point which is a type of Geometry. Any kind of Geometry will have this reflect method.

The method in DS looks a bit different than the node.

refPt = pt.Reflect( pl );

~Peter

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45541835.

— Reply to this email directly or view it on GitHub.

marcellosgamb commented 10 years ago

Finally got it thanks peter and everyone else for showing me how to use the Geometry.Reflect method properly (this is part of my rtcna 2014 lab material so thanks again) just open and run marcello

marcellosgamb commented 10 years ago

Awesome!

Sorry I didn’t get round to addressing your questions.

Do you have a node based version as well? I’ve recently been introducing a ‘mutation tester’ into Dynamo for finding bugs. I think I’d like to try it out on the cow.

Luke

From: M S marcellojs@hotmail.com<mailto:marcellojs@hotmail.com> Date: Monday, 9 June 2014 23:13 To: Zachary Kron Zachary.Kron@autodesk.com<mailto:Zachary.Kron@autodesk.com>, Ian Keough ian.keough@autodesk.com<mailto:ian.keough@autodesk.com>, Luke Church luke.church@autodesk.com<mailto:luke.church@autodesk.com>, DynamoDSDynamo reply@reply.github.com<mailto:reply@reply.github.com>, "frankfralick@beckgroup.commailto:frankfralick@beckgroup.com" frankfralick@beckgroup.com<mailto:frankfralick@beckgroup.com> Subject: the stand alone cow in dynamo

Finally got it thanks peter and everyone else for showing me how to use the Geometry.Reflect method properly (this is part of my rtcna 2014 lab material so thanks again)

just open and run

marcello


Autodesk Limited Registered Office: One Discovery Place, Columbus Drive, Farnborough, Hampshire GU14 0NZ Registered in England and Wales, No. 1839239

marcellosgamb commented 10 years ago

Excellent! We can take "autogenerated cow" off the bucket list :)

You try out the topo stuff yet?

From: M S [mailto:marcellojs@hotmail.com] Sent: Monday, June 09, 2014 6:14 PM To: Zachary Kron; Ian Keough; Luke Church (Contractor); DynamoDSDynamo; frankfralick@beckgroup.com Subject: the stand alone cow in dynamo

Finally got it thanks peter and everyone else for showing me how to use the Geometry.Reflect method properly (this is part of my rtcna 2014 lab material so thanks again)

just open and run

marcello

marcellosgamb commented 10 years ago

Great! The daily build, I tried to to get topo but its not there yet this build... DynamoDailyInstall20140609T1422.exe

is there a newer one on the market? marcello

From: Zachary.Kron@autodesk.com To: marcellojs@hotmail.com; ian.keough@autodesk.com; luke.church@autodesk.com; reply@reply.github.com; frankfralick@beckgroup.com Subject: RE: the stand alone cow in dynamo Date: Mon, 9 Jun 2014 22:22:36 +0000

Excellent! We can take “autogenerated cow” off the bucket list J

You try out the topo stuff yet?

From: M S [mailto:marcellojs@hotmail.com]

Sent: Monday, June 09, 2014 6:14 PM

To: Zachary Kron; Ian Keough; Luke Church (Contractor); DynamoDSDynamo; frankfralick@beckgroup.com

Subject: the stand alone cow in dynamo

Finally got it

thanks peter and everyone else for showing me how to use the Geometry.Reflect method properly

(this is part of my rtcna 2014 lab material so thanks again)

just open and run

marcello

marcellosgamb commented 10 years ago

I dont have a node based version .I am not program savvy enough to make one would like to get one any volunteers? Cow.ByCoordinates or somthing like that in the geometry section of dynamo .... that would be awesome let me know how the testing goes i would like to also eventually get the geometry back to Revit.seems that import instance is acting funny would prefer to have the surface in Revit as a native Revit form... but to do that you have to make the reference points in Revit to make the reference curves thru points to make the formthat many reference points bogs down everything in a bad bad way. unless you have a better way to make the surface form into revit from the cow geometry?

Marcello

From: luke.church@autodesk.com To: marcellojs@hotmail.com; Zachary.Kron@autodesk.com; ian.keough@autodesk.com; reply@reply.github.com; frankfralick@beckgroup.com Subject: Re: the stand alone cow in dynamo Date: Mon, 9 Jun 2014 22:16:59 +0000

Awesome!

Sorry I didn’t get round to addressing your questions.

Do you have a node based version as well? I’ve recently been introducing a ‘mutation tester’ into Dynamo for finding bugs. I think I’d like to try it out on the cow.

Luke

From: M S marcellojs@hotmail.com

Date: Monday, 9 June 2014 23:13

To: Zachary Kron Zachary.Kron@autodesk.com, Ian Keough ian.keough@autodesk.com, Luke Church luke.church@autodesk.com, DynamoDSDynamo reply@reply.github.com, "frankfralick@beckgroup.com" frankfralick@beckgroup.com

Subject: the stand alone cow in dynamo

Finally got it
thanks peter and everyone else for showing me how to use the Geometry.Reflect method properly (this is part of my rtcna 2014 lab material so thanks again)

just open and run

marcello

Autodesk Limited

Registered Office: One Discovery Place, Columbus Drive, Farnborough, Hampshire GU14 0NZ

Registered in England and Wales, No. 1839239

marcellosgamb commented 10 years ago

You don't need to do reference points to make a Form Element. You can take the nurbs curves that are generated, then pass them into ModelCurve.ReferenceCurveByCurve, and use these as the curve inputs for Form Element.

I think Luke is asking if you have also make the cow using wired up nodes (instead of a couple of code block nodes)

From: M S [mailto:marcellojs@hotmail.com] Sent: Monday, June 09, 2014 6:40 PM To: Luke Church (Contractor); Zachary Kron; Ian Keough; DynamoDSDynamo; frankfralick@beckgroup.com Subject: RE: the stand alone cow in dynamo

I dont have a node based version . I am not program savvy enough to make one

would like to get one any volunteers?

Cow.ByCoordinates or somthing like that

in the geometry section of dynamo ....

that would be awesome

let me know how the testing goes

i would like to also eventually get the geometry back to Revit. seems that import instance is acting funny would prefer to have the surface in Revit as a native Revit form... but to do that you have to make the reference points in Revit to make the reference curves thru points to make the form that many reference points bogs down everything in a bad bad way. unless you have a better way to make the surface form into revit from the cow geometry?

Marcello


From: luke.church@autodesk.com To: marcellojs@hotmail.com; Zachary.Kron@autodesk.com; ian.keough@autodesk.com; reply@reply.github.com; frankfralick@beckgroup.com Subject: Re: the stand alone cow in dynamo Date: Mon, 9 Jun 2014 22:16:59 +0000 Awesome!

Sorry I didn't get round to addressing your questions.

Do you have a node based version as well? I've recently been introducing a 'mutation tester' into Dynamo for finding bugs. I think I'd like to try it out on the cow.

Luke

From: M S marcellojs@hotmail.com<mailto:marcellojs@hotmail.com> Date: Monday, 9 June 2014 23:13 To: Zachary Kron Zachary.Kron@autodesk.com<mailto:Zachary.Kron@autodesk.com>, Ian Keough ian.keough@autodesk.com<mailto:ian.keough@autodesk.com>, Luke Church luke.church@autodesk.com<mailto:luke.church@autodesk.com>, DynamoDSDynamo reply@reply.github.com<mailto:reply@reply.github.com>, "frankfralick@beckgroup.commailto:frankfralick@beckgroup.com" frankfralick@beckgroup.com<mailto:frankfralick@beckgroup.com> Subject: the stand alone cow in dynamo

Finally got it thanks peter and everyone else for showing me how to use the Geometry.Reflect method properly (this is part of my rtcna 2014 lab material so thanks again)

just open and run

marcello


Autodesk Limited Registered Office: One Discovery Place, Columbus Drive, Farnborough, Hampshire GU14 0NZ Registered in England and Wales, No. 1839239

marcellosgamb commented 10 years ago

Zach and Luke My mistake yes I have a node version here it isi wanted an all design script version as well

topo mesh still not extracting with this buildDynamoDailyInstall20140609T1628.exedo you know which one works?

OH AND THANKS!THIS WORKS PERFECTLY ModelCurve.ReferenceCurveByCurve Marcello

From: Zachary.Kron@autodesk.com To: marcellojs@hotmail.com; luke.church@autodesk.com; ian.keough@autodesk.com; reply@reply.github.com; frankfralick@beckgroup.com Subject: RE: the stand alone cow in dynamo Date: Tue, 10 Jun 2014 01:22:20 +0000

You don’t need to do reference points to make a Form Element. You can take the nurbs curves that are generated, then pass them into ModelCurve.ReferenceCurveByCurve, and use these as the curve inputs for Form Element.

I think Luke is asking if you have also make the cow using wired up nodes (instead of a couple of code block nodes)

From: M S [mailto:marcellojs@hotmail.com]

Sent: Monday, June 09, 2014 6:40 PM

To: Luke Church (Contractor); Zachary Kron; Ian Keough; DynamoDSDynamo; frankfralick@beckgroup.com

Subject: RE: the stand alone cow in dynamo

I dont have a node based version .

I am not program savvy enough to make one

would like to get one

any volunteers?

Cow.ByCoordinates

or somthing like that

in the geometry section of dynamo ....

that would be awesome

let me know how the testing goes

i would like to also eventually get the geometry back to Revit.

seems that import instance is acting funny

would prefer to have the surface in Revit as a native Revit form... but to do that you have to make the

reference points in Revit to make the reference curves thru points to make the form

that many reference points bogs down everything in a bad bad way.

unless you have a better way to make the surface form into revit from the cow geometry?

Marcello

From: luke.church@autodesk.com

To: marcellojs@hotmail.com; Zachary.Kron@autodesk.com; ian.keough@autodesk.com; reply@reply.github.com; frankfralick@beckgroup.com

Subject: Re: the stand alone cow in dynamo

Date: Mon, 9 Jun 2014 22:16:59 +0000

Awesome!

Sorry I didn’t get round to addressing your questions.

Do you have a node based version as well? I’ve recently been introducing a ‘mutation tester’ into Dynamo for finding bugs. I think I’d like to try it out on the cow.

Luke

From: M S marcellojs@hotmail.com

Date: Monday, 9 June 2014 23:13

To: Zachary Kron Zachary.Kron@autodesk.com, Ian Keough ian.keough@autodesk.com, Luke Church luke.church@autodesk.com, DynamoDSDynamo reply@reply.github.com, "frankfralick@beckgroup.com" frankfralick@beckgroup.com

Subject: the stand alone cow in dynamo

Finally got it

thanks peter and everyone else for showing me how to use the Geometry.Reflect method properly

(this is part of my rtcna 2014 lab material so thanks again)

just open and run

marcello

Autodesk Limited

Registered Office: One Discovery Place, Columbus Drive, Farnborough, Hampshire GU14 0NZ

Registered in England and Wales, No. 1839239

marcellosgamb commented 10 years ago

Guys,

This is bull! Maybe one of you might know the issue I'm having by seeing this. The debugger doesn't catch this so maybe I have an old version of a dll or something (the warning sounds C++ or C ish), but I just merged this morning with your master. Seems that it has to do with geometry library. Any ideas? I'm eventually going to make a structure for this cow or sheet metal panels or something for RTC coming up. I want people to know they can make cows in Inventor should the need arise.

[cid:image001.png@01CF849B.7DF3CA00]

Frank Fralick

Beck

3500 Lenox Rd. Suite 250

Atlanta, GA 30326

(404) 949-2326

Better Buildings, Better Built!

Please consider the environment before printing this e-mail

This e-mail may be privileged and confidential. If you are not the intended recipient, please delete from all computers.

From: Zachary Kron [mailto:Zachary.Kron@autodesk.com] Sent: Monday, June 09, 2014 9:22 PM To: M S; Luke Church (Contractor); Ian Keough; DynamoDSDynamo; Frank Fralick Subject: RE: the stand alone cow in dynamo

You don't need to do reference points to make a Form Element. You can take the nurbs curves that are generated, then pass them into ModelCurve.ReferenceCurveByCurve, and use these as the curve inputs for Form Element.

I think Luke is asking if you have also make the cow using wired up nodes (instead of a couple of code block nodes)

From: M S [mailto:marcellojs@hotmail.com] Sent: Monday, June 09, 2014 6:40 PM To: Luke Church (Contractor); Zachary Kron; Ian Keough; DynamoDSDynamo; frankfralick@beckgroup.commailto:frankfralick@beckgroup.com Subject: RE: the stand alone cow in dynamo

I dont have a node based version . I am not program savvy enough to make one

would like to get one any volunteers?

Cow.ByCoordinates or somthing like that

in the geometry section of dynamo ....

that would be awesome

let me know how the testing goes

i would like to also eventually get the geometry back to Revit. seems that import instance is acting funny would prefer to have the surface in Revit as a native Revit form... but to do that you have to make the reference points in Revit to make the reference curves thru points to make the form that many reference points bogs down everything in a bad bad way. unless you have a better way to make the surface form into revit from the cow geometry?

Marcello


From: luke.church@autodesk.commailto:luke.church@autodesk.com To: marcellojs@hotmail.commailto:marcellojs@hotmail.com; Zachary.Kron@autodesk.commailto:Zachary.Kron@autodesk.com; ian.keough@autodesk.commailto:ian.keough@autodesk.com; reply@reply.github.commailto:reply@reply.github.com; frankfralick@beckgroup.commailto:frankfralick@beckgroup.com Subject: Re: the stand alone cow in dynamo Date: Mon, 9 Jun 2014 22:16:59 +0000 Awesome!

Sorry I didn't get round to addressing your questions.

Do you have a node based version as well? I've recently been introducing a 'mutation tester' into Dynamo for finding bugs. I think I'd like to try it out on the cow.

Luke

From: M S marcellojs@hotmail.com<mailto:marcellojs@hotmail.com> Date: Monday, 9 June 2014 23:13 To: Zachary Kron Zachary.Kron@autodesk.com<mailto:Zachary.Kron@autodesk.com>, Ian Keough ian.keough@autodesk.com<mailto:ian.keough@autodesk.com>, Luke Church luke.church@autodesk.com<mailto:luke.church@autodesk.com>, DynamoDSDynamo reply@reply.github.com<mailto:reply@reply.github.com>, "frankfralick@beckgroup.commailto:frankfralick@beckgroup.com" frankfralick@beckgroup.com<mailto:frankfralick@beckgroup.com> Subject: the stand alone cow in dynamo

Finally got it thanks peter and everyone else for showing me how to use the Geometry.Reflect method properly (this is part of my rtcna 2014 lab material so thanks again)

just open and run

marcello


Autodesk Limited Registered Office: One Discovery Place, Columbus Drive, Farnborough, Hampshire GU14 0NZ Registered in England and Wales, No. 1839239

marcellosgamb commented 10 years ago

Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: yes X-MS-TNEF-Correlator: x-originating-ip: [198.17.222.2] x-microsoft-antispam: BL:0;ACTION:Default;RISK:Low;SCL:0;SPMLVL:NotSpam;PCL:0;RULEID: x-forefront-prvs: 0238AEEDB0 x-forefront-antispam-report: SFV:NSPM;SFS:(979002)(428001)(199002)(189002)(43784003)(377454003)(19300405004)(46102001)(77982001)(87936001)(99286001)(77096999)(33646001)(64706001)(83072002)(18206015023)(80022001)(66066001)(79102001)(15202345003)(15975445006)(50986999)(19609705001)(85852003)(20776003)(19580405001)(19580395003)(83322001)(99936001)(86362001)(2656002)(76576001)(19625215002)(81342001)(21056001)(76482001)(101416001)(74316001)(16236675004)(76176999)(92566001)(81542001)(93886002)(54356999)(74662001)(74502001)(31966008)(4396001)(99396002)(17760045003)(24736002)(80792004)(969003)(989001)(999001)(1009001)(1019001);DIR:OUT;SFP:;SCL:1;SRVR:BY2PR08MB700;H:BY2PR08MB698.namprd08.prod.outlook.com;FPR:;MLV:ovrnspm;PTR:InfoNoRecords;A:1;MX:1;LANG:en; received-spf: None (: beckgroup.com does not designate permitted sender hosts) authentication-results: spf=none (sender IP is ) smtp.mailfrom=FrankFralick@beckgroup.com; Content-Type: multipart/related; boundary="_0058d56a62763174744ba255f5f63056b02BY2PR08MB698namprd08pro"; type="multipart/alternative" MIME-Version: 1.0 X-OriginatorOrg: beckgroup.com X-Barracuda-Connect: dalhubcas01.beckgroup.com[192.168.150.18] X-Barracuda-Start-Time: 1402413696 X-Barracuda-URL: http://192.168.149.120:80/cgi-mod/mark.cgi X-Virus-Scanned: by bsmtpd at beckgroup.com X-Barracuda-BRTS-Status: 1 X-Barracuda-Spam-Score: -1001.00 X-Barracuda-Spam-Status: No, SCORE=-1001.00 using global scores of TAG_LEVEL=1000.0 QUARANTINE_LEVEL=1000.0 KILL_LEVEL=9.0

--_0058d56a62763174744ba255f5f63056b02BY2PR08MB698namprd08pro Content-Type: multipart/alternative; boundary="_0008d56a62763174744ba255f5f63056b02BY2PR08MB698namprd08pro"

--_0008d56a62763174744ba255f5f63056b02BY2PR08MB698namprd08pro Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

Don't know if this helps, but changing a code block node to regular nodes r= esolved some of the "dereferencing a non-pointer" warnings. Any ideas on w= hat I should check would be greatly appreciated.

[cid:image002.jpg@01CF849E.1ECE27C0]

Frank Fralick

Beck

3500 Lenox Rd. Suite 250

Atlanta, GA 30326

(404) 949-2326

Better Buildings, Better Built!

Please consider the environment before printing this e-mail

This e-mail may be privileged and confidential. If you are not the intended= recipient, please delete from all computers.

From: Frank Fralick Sent: Tuesday, June 10, 2014 11:03 AM To: 'Zachary Kron'; M S; Luke Church (Contractor); Ian Keough; DynamoDSDyna= mo Subject: RE: the stand alone cow in dynamo

Guys,

This is bull! Maybe one of you might know the issue I'm having by seeing t= his. The debugger doesn't catch this so maybe I have an old version of a d= ll or something (the warning sounds C++ or C ish), but I just merged this m= orning with your master. Seems that it has to do with geometry library. A= ny ideas? I'm eventually going to make a structure for this cow or sheet m= etal panels or something for RTC coming up. I want people to know they can= make cows in Inventor should the need arise.

[cid:image003.png@01CF849E.1ECE27C0]

From: Zachary Kron [mailto:Zachary.Kron@autodesk.com] Sent: Monday, June 09, 2014 9:22 PM To: M S; Luke Church (Contractor); Ian Keough; DynamoDSDynamo; Frank Fralic= k Subject: RE: the stand alone cow in dynamo

You don't need to do reference points to make a Form Element. You can take= the nurbs curves that are generated, then pass them into ModelCurve.Refere= nceCurveByCurve, and use these as the curve inputs for Form Element.

I think Luke is asking if you have also make the cow using wired up nodes (= instead of a couple of code block nodes)

From: M S [mailto:marcellojs@hotmail.com] Sent: Monday, June 09, 2014 6:40 PM To: Luke Church (Contractor); Zachary Kron; Ian Keough; DynamoDSDynamo; fra= nkfralick@beckgroup.commailto:frankfralick@beckgroup.com Subject: RE: the stand alone cow in dynamo

I dont have a node based version . I am not program savvy enough to make one

would like to get one any volunteers?

Cow.ByCoordinates or somthing like that

in the geometry section of dynamo ....

that would be awesome

let me know how the testing goes

i would like to also eventually get the geometry back to Revit. seems that import instance is acting funny would prefer to have the surface in Revit as a native Revit form... but to = do that you have to make the reference points in Revit to make the reference curves thru points to make = the form that many reference points bogs down everything in a bad bad way. unless you have a better way to make the surface form into revit from the c= ow geometry?

Marcello


From: luke.church@autodesk.commailto:luke.church@autodesk.com To: marcellojs@hotmail.commailto:marcellojs@hotmail.com; Zachary.Kron@aut= odesk.commailto:Zachary.Kron@autodesk.com; ian.keough@autodesk.com; reply+i-33425153-71c192fe229c3703cb194975f12b234= 0bce1efb9-6132497@reply.github.com<mailto:reply+i-33425153-71c192fe229c3703= cb194975f12b2340bce1efb9-6132497@reply.github.com>; frankfralick@beckgroup.= commailto:frankfralick@beckgroup.com Subject: Re: the stand alone cow in dynamo Date: Mon, 9 Jun 2014 22:16:59 +0000 Awesome!

Sorry I didn't get round to addressing your questions.

Do you have a node based version as well? I've recently been introducing a = 'mutation tester' into Dynamo for finding bugs. I think I'd like to try it = out on the cow.

Luke

From: M S marcellojs@hotmail.com<mailto:marcellojs@hotmail.com> Date: Monday, 9 June 2014 23:13 To: Zachary Kron <Zachary.Kron@autodesk.com<mailto:Zachary.Kron@autodesk.co= m>>, Ian Keough ian.keough@autodesk.com<mailto:ian.keough@autodesk.com>, = Luke Church luke.church@autodesk.com<mailto:luke.church@autodesk.com>, Dy= namoDSDynamo <reply+i-33425153-71c192fe229c3703cb194975f12b2340bce1efb9-613= 2497@reply.github.com<mailto:reply+i-33425153-71c192fe229c3703cb194975f12b2= 340bce1efb9-6132497@reply.github.com>>, "frankfralick@beckgroup.com" <frankfralick@beckgroup.com> Subject: the stand alone cow in dynamo

Finally got it thanks peter and everyone else for showing me how to use the Geometry.Refl= ect method properly (this is part of my rtcna 2014 lab material so thanks again)

just open and run

marcello


Autodesk Limited Registered Office: One Discovery Place, Columbus Drive, Farnborough, Hampsh= ire GU14 0NZ Registered in England and Wales, No. 1839239

--_0008d56a62763174744ba255f5f63056b02BY2PR08MB698namprd08pro Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

<html xmlns:v=3D"urn:schemas-microsoft-com:vml" xmlns:o=3D"urn:schemas-micr= osoft-com:office:office" xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" xmlns=3D"http:= //www.w3.org/TR/REC-html40">

> >

<body lang=3D"EN-US" link=3D"blue" vlink=3D"purple">

<div class=3D"WordSection1"> <p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Se= goe UI","sans-serif"">Don’t know if this helps, but ch= anging a code block node to regular nodes resolved some of the “deref= erencing a non-pointer” warnings.  Any ideas on what I should ch= eck would be greatly appreciated.</o:p>

<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Se= goe UI","sans-serif""> </o:p>

<p class=3D"MsoNormal"><img width=3D"1077" height=3D"607" id=3D"_x0000_i102= 8" src=3D"cid:image002.jpg@01CF849E.1ECE27C0"><span style=3D"font-size:10.0= pt;font-family:"Segoe UI","sans-serif""></o:p></sp= an>

<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Se= goe UI","sans-serif""> </o:p>

<SPAN style=3D"COLOR: #0000ff"> <P style=3D"MARGIN: 0px"><SPAN style=3D"COLOR: #0000ff"><SPAN=20 style=3D"FONT-FAMILY: arial narrow; COLOR: #008000; FONT-SIZE: 12pt"><SPAN= =20 style=3D"FONT-FAMILY: arial narrow; COLOR: #008000; FONT-SIZE: 12pt"><SPAN= =20 style=3D"FONT-FAMILY: arial narrow; COLOR: black"><SPAN=20 style=3D"COLOR: black"><FONT=20 size=3D3>

<P style=3D"MARGIN: 0px"><SPAN style=3D"COLOR: #0000ff"><SPAN=20 style=3D"FONT-FAMILY: arial narrow; COLOR: #008000; FONT-SIZE: 12pt"><SPAN= =20 style=3D"FONT-FAMILY: arial narrow; COLOR: #008000; FONT-SIZE: 12pt"><SPAN= =20 style=3D"FONT-FAMILY: arial narrow; COLOR: black"><SPAN=20 style=3D"COLOR: black">Frank Fralick<= /SPAN>

<P style=3D"MARGIN: 0px"><SPAN=20 style=3D"FONT-FAMILY: arial narrow">

<P style=3D"MARGIN: 0px"><SPAN style=3D"FONT-FAMILY: arial narrow">Beck=20

<P style=3D"MARGIN: 0px"><SPAN=20 style=3D"FONT-FAMILY: arial narrow">3500 Lenox Rd. Suite 250

<P style=3D"MARGIN: 0px"><SPAN style=3D"FONT-FAMILY: arial narrow">Atlanta,= GA=20 30326

<P style=3D"MARGIN: 0px"><SPAN=20 style=3D"FONT-FAMILY: arial narrow">(404) 949-2326

<P style=3D"MARGIN: 0px"><SPAN style=3D"FONT-FAMILY: arial narrow"><= /P> <P style=3D"MARGIN: 0px"><SPAN style=3D"FONT-FAMILY: arial narrow"><= /P> <P style=3D"MARGIN: 0px"><FONT face=3D"Arial Narrow"> 

<P style=3D"MARGIN: 0px"><SPAN style=3D"COLOR: #0000ff"><SPAN=20 style=3D"FONT-FAMILY: arial narrow"><SPAN=20 style=3D"FONT-FAMILY: arial narrow; FONT-SIZE: 11px"><SPAN=20 style=3D"COLOR: #0000ff">Better Buildings, Better=20 Built!

<P style=3D"MARGIN: 0px"><SPAN style=3D"COLOR: #0000ff"><SPAN=20 style=3D"FONT-FAMILY: arial narrow"><SPAN=20 style=3D"FONT-FAMILY: arial narrow; FONT-SIZE: 11px"><SPAN=20 style=3D"COLOR: #0000ff"> 

<P style=3D"MARGIN: 0px"><SPAN=20 style=3D"COLOR: #0000ff">

<SPAN style=3D"COLOR: =

0000ff">

<P style=3D"MARGIN: 0px"><SPAN style=3D"COLOR: #0000ff"><SPAN=20 style=3D"FONT-FAMILY: arial narrow; COLOR: #008000; FONT-SIZE: 9pt"><SPAN=20 style=3D"FONT-FAMILY: arial narrow; COLOR: #008000; FONT-SIZE: 9pt">Please= =20 consider the environment before printing this e-mail <= /P> <P style=3D"MARGIN: 0px"><SPAN style=3D"COLOR: #0000ff"><SPAN=20 style=3D"FONT-FAMILY: arial narrow; COLOR: #008000"><SPAN=20 style=3D"FONT-FAMILY: arial narrow; COLOR: #008000; FONT-SIZE: 7.5pt"></SPA= N> =20

<P style=3D"MARGIN: 0px"><SPAN=20 style=3D"FONT-FAMILY: arial narrow; COLOR: black; FONT-SIZE: 9pt">This e-ma= il may=20 be privileged and confidential. If you are not the intended recipient,=20 please delete from all computers.


<div style=3D"border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in = 0in 0in"> <p class=3D"MsoNormal"><span style=3D"font-size:11.0pt;font-family:&quot= ;Calibri","sans-serif"">From:<span style=3D"font-= size:11.0pt;font-family:"Calibri","sans-serif""> Frank = Fralick
Sent: Tuesday, June 10, 2014 11:03 AM
To: 'Zachary Kron'; M S; Luke Church (Contractor); Ian Keough; Dynam= oDSDynamo
Subject: RE: the stand alone cow in dynamo</o:p>

<p class=3D"MsoNormal"> </o:p>

<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Se= goe UI","sans-serif"">Guys,</o:p>

<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Se= goe UI","sans-serif""> </o:p>

<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Se= goe UI","sans-serif"">This is bull!  Maybe one of you m= ight know the issue I’m having by seeing this.  The debugger doe= sn’t catch this so maybe I have an old version of a dll or something = (the warning sounds C++ or C ish), but I just merged this morning with = your master.  Seems that it has to do with geometry library.  Any= ideas?  I’m eventually going to make a structure for this cow o= r sheet metal panels or something for RTC coming up.  I want people to know they can make cows in Inventor should the need arise.<= /o:p>

<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Se= goe UI","sans-serif""> </o:p>

<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Se= goe UI","sans-serif""><img width=3D"1065" height=3D"757" id= =3D"Picture_x0020_1" src=3D"cid:image003.png@01CF849E.1ECE27C0"></o:p>=

<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Se= goe UI","sans-serif""> </o:p>

From: Zachar= y Kron [mailto:Zachary.Kron@au= todesk.com]
Sent: Monday, June 09, 2014 9:22 PM
To: M S; Luke Church (Contractor); Ian Keough; DynamoDSDynamo; Frank= Fralick
Subject: RE: the stand alone cow in dynamo

<p class=3D"MsoNormal"> </o:p>

<p class=3D"MsoNormal"><span style=3D"font-size:11.0pt;font-family:"Ca= libri","sans-serif";color:#1F497D">You don’t need to d= o reference points to make a Form Element.  You can take the nurbs cur= ves that are generated, then pass them into ModelCurve.ReferenceCurveByCurv= e, and use these as the curve inputs for Form Element.</o:p>

<p class=3D"MsoNormal"><span style=3D"font-size:11.0pt;font-family:"Ca= libri","sans-serif";color:#1F497D"> </o:p><= /p> <p class=3D"MsoNormal"><span style=3D"font-size:11.0pt;font-family:"Ca= libri","sans-serif";color:#1F497D">I think Luke is asking if= you have also make the cow using wired up nodes (instead of a couple of co= de block nodes)</o:p>

<p class=3D"MsoNormal"><span style=3D"font-size:11.0pt;font-family:"Ca= libri","sans-serif";color:#1F497D"> </o:p><= /p>

From: M S [mailto:marcellojs@hotmail.com]
Sent: Monday, June 09, 2014 6:40 PM
To: Luke Church (Contractor); Zachary Kron; Ian Keough; DynamoDSDyna= mo; frankfralick@beckgroup.com
Subject: RE: the stand alone cow in dynamo

<p class=3D"MsoNormal"> </o:p>

I dont have a node based version .

I am not program savvy enough to make one 

 

would like to get one 

any volunteers?

 

Cow.ByCoordinates 

or somthing like that

 

in the geometry section of dynamo ....=

 

that would be awesome 

 

let me know how the testing goes

 

i would like to also eventually get the geometry back to= Revit.

seems that import instance is acting funny 

would prefer to have the surface in Revit as a native Re= vit form... but to do that you have to make the 

reference points in Revit to make the reference curves t= hru points to make the form

that many reference points bogs down everything in a bad= bad way. 

unless you have a better way to make the surface form in= to revit from the cow geometry?

 

 

Marcello

 

 


From: luke.church@autodesk.commarcellojs@hotmail.com; <= a href=3D"mailto:Zachary.Kron@autodesk.com"> Zachary.Kron@autodesk.com; i= an.keough@autodesk.com; reply+i-33425153-71c192fe229c3703cb194975f12b2340bce1efb9-6132497@reply= .github.com; frankfralick@beckgroup.com Subject: Re: the stand alone cow in dynamo
Date: Mon, 9 Jun 2014 22:16:59 +0000

Awesome!

 

Sorry I didn’t get round to addressing your questi= ons.

 

Do you have a node based version as well? I’ve rec= ently been introducing a ‘mutation tester’ into Dynamo for find= ing bugs. I think I’d like to try it out on the cow.

 

Luke

 

 

Finally got it 

thanks peter and everyone else  for showing me how = to use the Geometry.Reflect method properly

 (this is part of my rtcna 2014 lab material so tha= nks again)

 

just open and run 

 

marcello

 

 

 

 

 


<p class=3D"MsoNormal"><span style=3D"font-size:7.5pt;font-family:"Ari= al","sans-serif";color:gray">
Autodesk Limited
Registered Office: One Discovery Place, Columbus Drive, Farnborough, Hampsh= ire GU14 0NZ
Registered in England and Wales, No. 1839239<span style=3D"font-fami= ly:"Calibri","sans-serif""></o:p>

--_0008d56a62763174744ba255f5f63056b02BY2PR08MB698namprd08pro--

--_0058d56a62763174744ba255f5f63056b02BY2PR08MB698namprd08pro Content-Type: image/jpeg; name="image002.jpg" Content-Description: image002.jpg Content-Disposition: inline; filename="image002.jpg"; size=72288; creation-date="Tue, 10 Jun 2014 15:21:28 GMT"; modification-date="Tue, 10 Jun 2014 15:21:28 GMT" Content-ID: image002.jpg@01CF849E.1ECE27C0 Content-Transfer-Encoding: base64

/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAoHBwkHBgoJCAkLCwoMDxkQDw4ODx4WFxIZJCAmJSMg IyIoLTkwKCo2KyIjMkQyNjs9QEBAJjBGS0U+Sjk/QD3/2wBDAQsLCw8NDx0QEB09KSMpPT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT3/wAARCAJfBDUDASIA AhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA AAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3 ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA AwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx BhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK U1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3 uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDg6KKK ACiiigAooooAKKKRnVThmAPvQAtFN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fW gB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P++tHmx/31oAdRTfN j/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760eb H/fWgB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P++tHmx/31oAd RTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/7 60ebH/fWgB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P++tHmx/3 1oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3 zY/760ebH/fWgB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P++tH mx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aA HUU3zY/760ebH/fWgB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P ++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P++tHmx/31oAdRTfNj/vrR5sf 99aAHUU3zY/760ebH/fWgB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1F N82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P++tHmx/31oAdRTfNj/vr R5sf99aAHUU3zY/760ebH/fWgB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fW gB1FN82P++tHmx/31oAdRTfNj/vrR5sf99aAHUU3zY/760ebH/fWgB1FN82P++tFAG7JoKSWcIs5 kmuP3hOAw8zawGAD3Gaik0Bo0ci8hZ1EjBFVvmEZw2DXQW/hrxfFdLcz6dNPNGG8ktOgCE9TgHmq S+CfFyqFWxmACsoHmpwG+8OvegDI1O1sYLS1eznMkjr+9Xjg9eeevI/Ks2uj/wCFe+Jv+gW//fxP 8aP+FfeJv+gW/wD38T/GgDnKK6P/AIV94m/6Bb/9/E/xo/4V94m/6Bb/APfxP8aAOcqtc/60f7or rP8AhX3ib/oFv/38T/Gopvhz4okcFdLbGMf61P8AGgDk6K6j/hW3in/oFt/39T/Gj/hW3in/AKBb f9/U/wAaAOXorqP+FbeKf+gW3/f1P8aP+FbeKf8AoFt/39T/ABoA5eiuo/4Vt4p/6Bbf9/U/xo/4 Vt4p/wCgW3/f1P8AGgDl6K6j/hW3in/oFt/39T/Gj/hW3in/AKBbf9/U/wAaAOXorqP+FbeKf+gW 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 Dl6K6j/hW3in/oFt/wB/U/xo/wCFbeKf+gW3/f1P8aAOXorqP+FbeKf+gW3/AH9T/Gj/AIVt4p/6 Bbf9/U/xoA5eiuo/4Vt4p/6Bbf8Af1P8aKAPfKKKKACiiigAooooAKKKKACiiigAooooAKKKKACi iigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKK KACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo AKKKKACiinRBZJCuenJFADoo9xyen86sUg4HFLQA2RtkbMewrgdUH9pa3bWnaWUA/Tqf0Fdpqc3k 2bH1rlfDMP23xNNcsMrbRnB/2m4/lmgDtQAAABgDtWNrt15cZUHoK2JHCIWPauI8RX20Oc0Acrq8 5uLnYPxq/wCH76fSrgPDzG3Dxnow/wAayoUMspdupNbNpB04oA720u4r2ASwng9QeoPoanrnNML2 0gZOh6jsa3xNH5YdnVR7nFAElFVxf2hOBcw5/wB8U8XMDdJoz/wIUAS0UisGGVII9Qc0tABRRRQA UUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABR RRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFF FABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUU AFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQA UUUUAFFFFABVPRpvNmnb+8xP61YuH8q3kf8AuqTWd4df94woA6GiiigDB8TXPl2+3PaovBNvs0iS 5YfNcylvwHA/kay/Fl0XZkTlmO0D3Nddp9qLHTre3HSKMKfrjmgCHVbgRW5Geteba1cm5uvLU8A8 11nibURGjAHmuLgjMshdupOaAJ7SDpxW5aQdOKq2kHTitq3jEabm6CgCZMQRbj1rMvWF5Gyg/vE5 X39qW/vODg1ijUNl0OaAIjdYOD1FOF371X1hQji4j+4/X2NZYu/egDo4NVmt2zDKyH2NbFn4vZML dxhx/eTg1wwu/elF370AeqWetWN9xDOof+4/ymr9ePC7961LDxVqFiQI5zIg/gk+YUAem0VxsHjk TKBOhhbuUGR/jVg6q12uY5/MX2agDp3mjjGXkVfqaqyavZx9Zdx/2RmuaZpHbnj3NNOF75NAG4/i KBWwsMjD1yBT08RWZ+8JU+q5rm2YetQtItAHYprNhJjF0g/3uP51ZS5gl/1c0bfRhXnzyioGlAOR 1oA9N6jI6UV5kuoXEP8Aqp5U/wB1yK7HwxrB1KzaKZ83EPBJPLL2NAG5RRRQAUUUUAFFFFABRRRQ AUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAB RRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFF FFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUU UAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAFLVn2WDj+8QKoeHnxdMPerOuNi2jHqx/lVDQX xeke9AHXVHcP5cDt6CpKzdauPKtSM9RQBy0cZ1LxVaxYyiP5r5GRhef54rs72YQWzMTXMeDYfO1G +vWHCgRKf1P9KteJ9REURRT0oA5TWro3l4VByAeaLSDpxVe3jMjlm6k5ratIOnFAFm1gwATReXQR dqngU6eYQR7Qee9YF/e9eaAIb+9681z1xfbZgc96dfXZJIBrIkJY5NAHVW90l5atC54YcfWsCVWh mZG6qajtLtoHHPFXL8iZVnXr0agCuGqRWqBTT1NAFhWqRWquGp4agCwGqSOZo2DIxU+oOKqhqcHo A2YNYnUAO28e/Wri6kkg5yp965wPipo5qANxrjPQ1A01U1m4oMuaAJ2l96iaSoWkqNpKAJWkqfTd Vk0vUYrqPnacMv8AeU9RWc0lRPJQB7Tb3Ed1bxzwMGjkUMpHcVJXBeAdfCzNpNw/yvl4Cex7r/Wu 9oAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiii gAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKA CiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK KKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigDI15vkiH1NZujPi/wDx q9r7fvYx6LWVpT41CgDux0rlfE94FVhngV0skmy2L/7NcJq27UdShtEPM0gT6Dv+lAHR+HYhpvhi KRuHlBlP/Aun6Yrk9XujeXpXOQDXT+Ir1bW1EEfARdoFcnbxF33N1JzQBYtIOlae5beLnrUcKCJN xrPv73rzQBFf3vXmubvbssSAanvLouSAazH5OaAK8hJOT1qs9WXqs9ADKsQT7QUf7rcVXFLQBP8A dJB7U8NUAbNOBoAnDU4NUANOBoAnDU4NUANOBoAnD04PUINKDQBZE2BR51V91ITQBYM1NaSq5amF j60ATNJULyU0sTUZoAelzJBMksLlJEIZWHUEV7bomoHVdEs71gA00YZgPXof1FeGGvXvAM3neD7T /pmzx/kaAOjooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAo oooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACii igAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAMPxAuJI37Fc Vi6e2NQWuh8QR7rBX/uN/OuZtGxfrQB2WpXPl6eoz1Wuc8OxifWLm+k+5aphf95v/rfzq1r13stV Gei1VtH/ALP8Nx54kuCZW/Hp+lAFTVbk3l6RnIBqS1hCjJ6Cq9tEXbcep5qa5uBFHtU0ANvbsKCA cAVz13cmQkA1NdTmRiM1RegCs9V3qy9V34oArPVaQ81ZkNVXOTQA2lpKKAFBp4NMpQaAJAacDUYN OBoAkBpwNRhqN1AEu6l3VFupd1AEu6gmo91G6gBSaYTQTTSaAFzQaTNFADTXp/wymL+Hp4jn91cH H4gGvMTXoHwtl/d6lCegKOP1FAHf0UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQA UUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABR RRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFF FABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUU AFFFFAFXU4vO02dAMnbkfhzXE27YvkrvyAylT0Iwa4CaM2uqmI8FHK0AWdXY3l3FbKeZGC/Qd6l1 CX7RdCNP9XGNoH0qpBJv1Ga4PIhXC/7x/wDrVMuI1Lt1NADncW8XvWTczGQn0qeeQyMc9KqsuaAK r1A6+tWnwKrSGgCtIcVVkNWJMmqsoPegCtIarHrU8pxUFABRRRQAUtJS0AKDS7qbRQA7dS7qZRQB Juo3UyigCTdS7qjzRmgB5NJmm5paAHUUlFACmuy+GMuzXLuIkYe3zj3DCuNrd8E3f2TxbZEnCykx H8RQB7FRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQA UUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABR RRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFF FABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFcb4pg+z6xHOPuy rn8Rwf6V2Vc741t2fRRcRxvI8DjKoOSp4NAGFYLi1DN/Gxc/0/SnSkyH2q2lr+7UEqqgDgmhoYlH Lg/jQBmsoHuahdGPb860HKL93aKqSuPUUAUni/vH8qrSBR2q1K1UZWoArzNVGZqszNVGZqAK8rZN MoY5NJQAtFFFABRRRQAtFFFABRRRQAUtJRQAtFFFAC0UlLQAtLSUUALUlpcG0voLhc5ikVxj2Oai prc8UAfQKOJEV1OVYBgfrTqyvC939u8MafMTljCFb6jj+latABRRRQAUUUUAFFFFABRRRQAUUUUA FFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAU 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 9aEldNPs4nLx2lurt1YRKCfqcVzXiOFY7x9qgBgG4GK62ue8Ux8RP6qRUOTe7GceW2vTjh1xTZxg 5qJJKQDp4/Mt2U+lYNzb9eK6IHcKpXNvnPFAHLyxlD7VHWtc23XisyVNjYoAZRRRQAUUUUAFLSUU ALS0lFAC0tJRQAtLSUUALRSUUALUbHJp5OBUfU0AOFP7U0CndqAOr+G0RfxYH7RwOT+OBXrVeX/C 2Mtrl4+OFt8Z+rCvUKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooo oAKKKKACiiigAooooAKKKKACisDTvGmj6hJ5LXBtbjvFcr5Zz+PFbwIZQVIIPQjkGgBaKKKACiii gAooooAKKKKACiiigAooooAK56f/AJCt/wD9dV/9FrXQ1z0//IVv/wDrqv8A6LWk9hoKKKKgYUUU UAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFNd1jQu/Cj 2zTqjnRpIWVAC3BAJx0INAAs6M4Qbgx6bkIz+dXNG/5CV5/1yi/m9UcSyTxs0YRUySd+eoxV7Rv+ Qlef9cov5vVLcGbNFFFUSFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABTJoYrhNs8SSr6OoYf rT6KBptO6MeTwtpZcvbwvaSf3rWRo/0HFJ/Zer23/HnrRlUdEvIQ/wD48MGtmio9nHob/W6

marcellosgamb commented 10 years ago

Could you change your render setting to high :)

Sent from my iPhone

On Jun 10, 2014, at 8:21 AM, "Frank Fralick" FrankFralick@beckgroup.com wrote:

Don’t know if this helps, but changing a code block node to regular nodes resolved some of the “dereferencing a non-pointer” warnings. Any ideas on what I should check would be greatly appreciated.

Frank Fralick Beck 3500 Lenox Rd. Suite 250 Atlanta, GA 30326 (404) 949-2326 Better Buildings, Better Built! Please consider the environment before printing this e-mail This e-mail may be privileged and confidential. If you are not the intended recipient, please delete from all computers. From: Frank Fralick Sent: Tuesday, June 10, 2014 11:03 AM To: 'Zachary Kron'; M S; Luke Church (Contractor); Ian Keough; DynamoDSDynamo Subject: RE: the stand alone cow in dynamo Guys, This is bull! Maybe one of you might know the issue I’m having by seeing this. The debugger doesn’t catch this so maybe I have an old version of a dll or something (the warning sounds C++ or C ish), but I just merged this morning with your master. Seems that it has to do with geometry library. Any ideas? I’m eventually going to make a structure for this cow or sheet metal panels or something for RTC coming up. I want people to know they can make cows in Inventor should the need arise. From: Zachary Kron [mailto:Zachary.Kron@autodesk.com] Sent: Monday, June 09, 2014 9:22 PM To: M S; Luke Church (Contractor); Ian Keough; DynamoDSDynamo; Frank Fralick Subject: RE: the stand alone cow in dynamo You don’t need to do reference points to make a Form Element. You can take the nurbs curves that are generated, then pass them into ModelCurve.ReferenceCurveByCurve, and use these as the curve inputs for Form Element. I think Luke is asking if you have also make the cow using wired up nodes (instead of a couple of code block nodes) From: M S [mailto:marcellojs@hotmail.com] Sent: Monday, June 09, 2014 6:40 PM To: Luke Church (Contractor); Zachary Kron; Ian Keough; DynamoDSDynamo; frankfralick@beckgroup.com Subject: RE: the stand alone cow in dynamo I dont have a node based version . I am not program savvy enough to make one would like to get one any volunteers? Cow.ByCoordinates or somthing like that in the geometry section of dynamo .... that would be awesome let me know how the testing goes i would like to also eventually get the geometry back to Revit. seems that import instance is acting funny would prefer to have the surface in Revit as a native Revit form... but to do that you have to make the reference points in Revit to make the reference curves thru points to make the form that many reference points bogs down everything in a bad bad way. unless you have a better way to make the surface form into revit from the cow geometry? Marcello From: luke.church@autodesk.com To: marcellojs@hotmail.com; Zachary.Kron@autodesk.com; ian.keough@autodesk.com; reply@reply.github.com; frankfralick@beckgroup.com Subject: Re: the stand alone cow in dynamo Date: Mon, 9 Jun 2014 22:16:59 +0000 Awesome! Sorry I didn’t get round to addressing your questions. Do you have a node based version as well? I’ve recently been introducing a ‘mutation tester’ into Dynamo for finding bugs. I think I’d like to try it out on the cow. Luke From: M S marcellojs@hotmail.com Date: Monday, 9 June 2014 23:13 To: Zachary Kron Zachary.Kron@autodesk.com, Ian Keough ian.keough@autodesk.com, Luke Church luke.church@autodesk.com, DynamoDSDynamo reply@reply.github.com, "frankfralick@beckgroup.com" frankfralick@beckgroup.com Subject: the stand alone cow in dynamo Finally got it thanks peter and everyone else for showing me how to use the Geometry.Reflect method properly (this is part of my rtcna 2014 lab material so thanks again) just open and run marcello Autodesk Limited Registered Office: One Discovery Place, Columbus Drive, Farnborough, Hampshire GU14 0NZ Registered in England and Wales, No. 1839239
marcellosgamb commented 10 years ago

The issue I was having is name collisions. Inventor's API has Point, Vector, Sphere etc. To get this to work I have to use fully qualified names like Autodesk.DesignScript.Geometry.Point.ByCoordinates, which is annoying. I want to be able to use definitions without going through code and pasting in "Autodesk.DesignScript.Geometry" everywhere.

Frank Fralick

Beck

3500 Lenox Rd. Suite 250

Atlanta, GA 30326

(404) 949-2326

Better Buildings, Better Built!

Please consider the environment before printing this e-mail

This e-mail may be privileged and confidential. If you are not the intended recipient, please delete from all computers.

From: M S [mailto:marcellojs@hotmail.com] Sent: Monday, June 09, 2014 6:14 PM To: Zachary Kron; Ian Keough; Luke Church (Contractor); DynamoDSDynamo; Frank Fralick Subject: the stand alone cow in dynamo

Finally got it thanks peter and everyone else for showing me how to use the Geometry.Reflect method properly (this is part of my rtcna 2014 lab material so thanks again)

just open and run

marcello

pboyer commented 10 years ago

Hi all,

Let's keep this thread isolated to the issue at hand.

~Peter

On Tue, Jun 10, 2014 at 12:05 PM, marcellosgamb notifications@github.com wrote:

The issue I was having is name collisions. Inventor's API has Point, Vector, Sphere etc. To get this to work I have to use fully qualified names like Autodesk.DesignScript.Geometry.Point.ByCoordinates, which is annoying. I want to be able to use definitions without going through code and pasting in "Autodesk.DesignScript.Geometry" everywhere.

Frank Fralick

Beck

3500 Lenox Rd. Suite 250

Atlanta, GA 30326

(404) 949-2326

Better Buildings, Better Built!

Please consider the environment before printing this e-mail

This e-mail may be privileged and confidential. If you are not the intended recipient, please delete from all computers.

From: M S [mailto:marcellojs@hotmail.com] Sent: Monday, June 09, 2014 6:14 PM To: Zachary Kron; Ian Keough; Luke Church (Contractor); DynamoDSDynamo; Frank Fralick Subject: the stand alone cow in dynamo

Finally got it thanks peter and everyone else for showing me how to use the Geometry.Reflect method properly (this is part of my rtcna 2014 lab material so thanks again)

just open and run

marcello

Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45634544.

marcellosgamb commented 10 years ago

It's not in the latest build Topo query mesh

Sent from my iPhone

On Jun 9, 2014, at 1:53 PM, "Peter Boyer" notifications@github.com wrote:

All methods are like this in the DS code - this is not an exception.

e.g.

Point.ByCoordinates( 0, 0, 0 ); pt.X; // returns 0 pt.Translate(1, 2, 3); // returns new point at 1, 2, 3

box = Cuboid.ByCorners( Point.ByCoordinates( 0.5, 0.5, 0.5 ), Point.ByCoordinates(1, 1, 1 ) ); pt.GetClosestPoint( box ); // returns Point at 0.5, 0.5, 0.5

Find more here: http://designscript.org/manual.pdf, although a lot is out of date...

On Mon, Jun 9, 2014 at 4:46 PM, marcellosgamb notifications@github.com wrote:

Oh I see you put the geometry first Geometry.reflect(plane

Will try I was trying to Do geometry.reflect(geometry,plane) Just like most nodes? Is this unique?

Was confused Thx !

Sent from my iPhone

On Jun 9, 2014, at 1:41 PM, "Peter Boyer" notifications@github.com wrote:

Hi Marcello,

Here's an instructive example:

Reflect is a "method" of Point which is a type of Geometry. Any kind of Geometry will have this reflect method.

The method in DS looks a bit different than the node.

refPt = pt.Reflect( pl );

~Peter

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45541835.

— Reply to this email directly or view it on GitHub.

pboyer commented 10 years ago

Hi Marcello,

Should be in the next build. It was just submitted. Sorry about that!

~Peter

On Tue, Jun 10, 2014 at 1:21 PM, marcellosgamb notifications@github.com wrote:

It's not in the latest build Topo query mesh

Sent from my iPhone

On Jun 9, 2014, at 1:53 PM, "Peter Boyer" notifications@github.com wrote:

All methods are like this in the DS code - this is not an exception.

e.g.

Point.ByCoordinates( 0, 0, 0 ); pt.X; // returns 0 pt.Translate(1, 2, 3); // returns new point at 1, 2, 3

box = Cuboid.ByCorners( Point.ByCoordinates( 0.5, 0.5, 0.5 ), Point.ByCoordinates(1, 1, 1 ) ); pt.GetClosestPoint( box ); // returns Point at 0.5, 0.5, 0.5

Find more here: http://designscript.org/manual.pdf, although a lot is out of date...

On Mon, Jun 9, 2014 at 4:46 PM, marcellosgamb notifications@github.com

wrote:

Oh I see you put the geometry first Geometry.reflect(plane

Will try I was trying to Do geometry.reflect(geometry,plane) Just like most nodes? Is this unique?

Was confused Thx !

Sent from my iPhone

On Jun 9, 2014, at 1:41 PM, "Peter Boyer" notifications@github.com

wrote:

Hi Marcello,

Here's an instructive example:

Reflect is a "method" of Point which is a type of Geometry. Any kind of Geometry will have this reflect method.

The method in DS looks a bit different than the node.

refPt = pt.Reflect( pl );

~Peter

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45541835.

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45644440.

marcellosgamb commented 10 years ago

Petermesh from topo not working see image Marcello

Date: Tue, 10 Jun 2014 11:58:58 -0700 From: notifications@github.com To: Dynamo@noreply.github.com CC: marcellojs@hotmail.com Subject: Re: [Dynamo] v.7 topo element geometry is not being extracted (#1649)

Hi Marcello,

Should be in the next build. It was just submitted. Sorry about that!

~Peter

On Tue, Jun 10, 2014 at 1:21 PM, marcellosgamb notifications@github.com

wrote:

It's not in the latest build

Topo query mesh

Sent from my iPhone

On Jun 9, 2014, at 1:53 PM, "Peter Boyer" notifications@github.com

wrote:

All methods are like this in the DS code - this is not an exception.

e.g.

Point.ByCoordinates( 0, 0, 0 );

pt.X; // returns 0

pt.Translate(1, 2, 3); // returns new point at 1, 2, 3

box = Cuboid.ByCorners( Point.ByCoordinates( 0.5, 0.5, 0.5 ),

Point.ByCoordinates(1, 1, 1 ) );

pt.GetClosestPoint( box ); // returns Point at 0.5, 0.5, 0.5

Find more here: http://designscript.org/manual.pdf, although a lot is

out

of date...

On Mon, Jun 9, 2014 at 4:46 PM, marcellosgamb notifications@github.com

wrote:

Oh I see you put the geometry first

Geometry.reflect(plane

Will try

I was trying to

Do geometry.reflect(geometry,plane)

Just like most nodes?

Is this unique?

Was confused

Thx !

Sent from my iPhone

On Jun 9, 2014, at 1:41 PM, "Peter Boyer" notifications@github.com

wrote:

Hi Marcello,

Here's an instructive example:

Reflect is a "method" of Point which is a type of Geometry. Any kind

of

Geometry will have this reflect method.

The method in DS looks a bit different than the node.

refPt = pt.Reflect( pl );

~Peter

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHub

https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45541835.

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHub

https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45644440.

— Reply to this email directly or view it on GitHub.

pboyer commented 10 years ago

Hi Marcello,

There doesn't seem to be an image.

~Peter

On Tue, Jun 10, 2014 at 3:32 PM, marcellosgamb notifications@github.com wrote:

Petermesh from topo not working see image Marcello

Date: Tue, 10 Jun 2014 11:58:58 -0700 From: notifications@github.com To: Dynamo@noreply.github.com CC: marcellojs@hotmail.com Subject: Re: [Dynamo] v.7 topo element geometry is not being extracted (#1649)

Hi Marcello,

Should be in the next build. It was just submitted. Sorry about that!

~Peter

On Tue, Jun 10, 2014 at 1:21 PM, marcellosgamb notifications@github.com

wrote:

It's not in the latest build

Topo query mesh

Sent from my iPhone

On Jun 9, 2014, at 1:53 PM, "Peter Boyer" notifications@github.com

wrote:

All methods are like this in the DS code - this is not an exception.

e.g.

Point.ByCoordinates( 0, 0, 0 );

pt.X; // returns 0

pt.Translate(1, 2, 3); // returns new point at 1, 2, 3

box = Cuboid.ByCorners( Point.ByCoordinates( 0.5, 0.5, 0.5 ),

Point.ByCoordinates(1, 1, 1 ) );

pt.GetClosestPoint( box ); // returns Point at 0.5, 0.5, 0.5

Find more here: http://designscript.org/manual.pdf, although a lot is

out

of date...

On Mon, Jun 9, 2014 at 4:46 PM, marcellosgamb < notifications@github.com>

wrote:

Oh I see you put the geometry first

Geometry.reflect(plane

Will try

I was trying to

Do geometry.reflect(geometry,plane)

Just like most nodes?

Is this unique?

Was confused

Thx !

Sent from my iPhone

On Jun 9, 2014, at 1:41 PM, "Peter Boyer" < notifications@github.com>

wrote:

Hi Marcello,

Here's an instructive example:

Reflect is a "method" of Point which is a type of Geometry. Any kind

of

Geometry will have this reflect method.

The method in DS looks a bit different than the node.

refPt = pt.Reflect( pl );

~Peter

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHub

< https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45541835>.

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHub

https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45644440.

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45660651.

marcellosgamb commented 10 years ago

Sending again

Sent from my iPhone

On Jun 10, 2014, at 2:18 PM, "Peter Boyer" notifications@github.com wrote:

Hi Marcello,

There doesn't seem to be an image.

~Peter

On Tue, Jun 10, 2014 at 3:32 PM, marcellosgamb notifications@github.com wrote:

Petermesh from topo not working see image Marcello

Date: Tue, 10 Jun 2014 11:58:58 -0700 From: notifications@github.com To: Dynamo@noreply.github.com CC: marcellojs@hotmail.com Subject: Re: [Dynamo] v.7 topo element geometry is not being extracted (#1649)

Hi Marcello,

Should be in the next build. It was just submitted. Sorry about that!

~Peter

On Tue, Jun 10, 2014 at 1:21 PM, marcellosgamb notifications@github.com

wrote:

It's not in the latest build

Topo query mesh

Sent from my iPhone

On Jun 9, 2014, at 1:53 PM, "Peter Boyer" notifications@github.com

wrote:

All methods are like this in the DS code - this is not an exception.

e.g.

Point.ByCoordinates( 0, 0, 0 );

pt.X; // returns 0

pt.Translate(1, 2, 3); // returns new point at 1, 2, 3

box = Cuboid.ByCorners( Point.ByCoordinates( 0.5, 0.5, 0.5 ),

Point.ByCoordinates(1, 1, 1 ) );

pt.GetClosestPoint( box ); // returns Point at 0.5, 0.5, 0.5

Find more here: http://designscript.org/manual.pdf, although a lot is

out

of date...

On Mon, Jun 9, 2014 at 4:46 PM, marcellosgamb < notifications@github.com>

wrote:

Oh I see you put the geometry first

Geometry.reflect(plane

Will try

I was trying to

Do geometry.reflect(geometry,plane)

Just like most nodes?

Is this unique?

Was confused

Thx !

Sent from my iPhone

On Jun 9, 2014, at 1:41 PM, "Peter Boyer" < notifications@github.com>

wrote:

Hi Marcello,

Here's an instructive example:

Reflect is a "method" of Point which is a type of Geometry. Any kind

of

Geometry will have this reflect method.

The method in DS looks a bit different than the node.

refPt = pt.Reflect( pl );

~Peter

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHub

< https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45541835>.

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHub

https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45644440.

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45660651.

— Reply to this email directly or view it on GitHub.

marcellosgamb commented 10 years ago

I get it?

U see my sequential numbering question?

Sent from my iPhone

On Jun 10, 2014, at 2:18 PM, "Peter Boyer" notifications@github.com wrote:

Hi Marcello,

There doesn't seem to be an image.

~Peter

On Tue, Jun 10, 2014 at 3:32 PM, marcellosgamb notifications@github.com wrote:

Petermesh from topo not working see image Marcello

Date: Tue, 10 Jun 2014 11:58:58 -0700 From: notifications@github.com To: Dynamo@noreply.github.com CC: marcellojs@hotmail.com Subject: Re: [Dynamo] v.7 topo element geometry is not being extracted (#1649)

Hi Marcello,

Should be in the next build. It was just submitted. Sorry about that!

~Peter

On Tue, Jun 10, 2014 at 1:21 PM, marcellosgamb notifications@github.com

wrote:

It's not in the latest build

Topo query mesh

Sent from my iPhone

On Jun 9, 2014, at 1:53 PM, "Peter Boyer" notifications@github.com

wrote:

All methods are like this in the DS code - this is not an exception.

e.g.

Point.ByCoordinates( 0, 0, 0 );

pt.X; // returns 0

pt.Translate(1, 2, 3); // returns new point at 1, 2, 3

box = Cuboid.ByCorners( Point.ByCoordinates( 0.5, 0.5, 0.5 ),

Point.ByCoordinates(1, 1, 1 ) );

pt.GetClosestPoint( box ); // returns Point at 0.5, 0.5, 0.5

Find more here: http://designscript.org/manual.pdf, although a lot is

out

of date...

On Mon, Jun 9, 2014 at 4:46 PM, marcellosgamb < notifications@github.com>

wrote:

Oh I see you put the geometry first

Geometry.reflect(plane

Will try

I was trying to

Do geometry.reflect(geometry,plane)

Just like most nodes?

Is this unique?

Was confused

Thx !

Sent from my iPhone

On Jun 9, 2014, at 1:41 PM, "Peter Boyer" < notifications@github.com>

wrote:

Hi Marcello,

Here's an instructive example:

Reflect is a "method" of Point which is a type of Geometry. Any kind

of

Geometry will have this reflect method.

The method in DS looks a bit different than the node.

refPt = pt.Reflect( pl );

~Peter

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHub

< https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45541835>.

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHub

https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45644440.

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-45660651.

— Reply to this email directly or view it on GitHub.

marcellosgamb commented 10 years ago

Peter U see my question yet Thx Marcello

Sent from my iPhone

Begin forwarded message:

From: M S marcellojs@hotmail.com Date: June 25, 2014 at 9:46:08 AM PDT To: Zachary Kron zachary.kron@autodesk.com Cc: Colin McCrone colin.mccrone@autodesk.com, Ian Keough ian.keough@autodesk.com, "Luke Church (Contractor)" luke.church@autodesk.com Subject: list extraction question

I posted this question on the forum but I thought I would ask you all as well

see the image

why am i not getting 5 values on the watch node (meaning i want the nested [0] value out of the first 5 entries on the list)

it works if i manually say

x[0][0] x[1][0] x[2][0] x[3][0] x[4][0]

but not if i say

listlength={0,1,2,3,4};

x[listlength][0]

it does not work as in the image

what am i doing wrong?

thanks

marcello

pboyer commented 10 years ago

Nope. Which one?

marcellosgamb commented 10 years ago

see the image

why am i not getting 5 values on the watch node (meaning i want the nested [0] value out of the first 5 entries on the list)

it works if i manually say

x[0][0] x[1][0] x[2][0] x[3][0] x[4][0]

but not if i say

listlength={0,1,2,3,4};

x[listlength][0]

it does not work as in the image

what am i doing wrong?

thanks

marcello

Sent from my iPhone

On Jun 25, 2014, at 11:56 AM, "Peter Boyer" notifications@github.com wrote:

Nope. Which one?

— Reply to this email directly or view it on GitHub.

marcellosgamb commented 10 years ago

Peter You get that email yesterday? Thx Marcello

Sent from my iPhone

On Jun 25, 2014, at 11:56 AM, "Peter Boyer" notifications@github.com wrote:

Nope. Which one?

— Reply to this email directly or view it on GitHub.

pboyer commented 10 years ago

Hey Marcello,

None of your images are coming through. Not sure why. :/ Feel free to email me at peter.boyer@autodesk.com

~Peter

On Thu, Jun 26, 2014 at 10:47 AM, marcellosgamb notifications@github.com wrote:

Peter You get that email yesterday? Thx Marcello

Sent from my iPhone

On Jun 25, 2014, at 11:56 AM, "Peter Boyer" notifications@github.com wrote:

Nope. Which one?

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-47234923.

marcellosgamb commented 10 years ago

Peter You got any insight for me on my question ? Thx Marcello

Sent from my iPhone

On Jun 26, 2014, at 8:57 AM, "Peter Boyer" notifications@github.com wrote:

Hey Marcello,

None of your images are coming through. Not sure why. :/ Feel free to email me at peter.boyer@autodesk.com

~Peter

On Thu, Jun 26, 2014 at 10:47 AM, marcellosgamb notifications@github.com wrote:

Peter You get that email yesterday? Thx Marcello

Sent from my iPhone

On Jun 25, 2014, at 11:56 AM, "Peter Boyer" notifications@github.com wrote:

Nope. Which one?

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/DynamoDS/Dynamo/issues/1649#issuecomment-47234923.

— Reply to this email directly or view it on GitHub.