CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > OpenSource CNC Design Center > OpenSource Software


OpenSource Software For the Discussion of Opensource CAD/CAM and NC shareware software etc)


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #13  
Old 10-22-2006, 04:27 PM
Switcher's Avatar
Moderator
 
Join Date: Apr 2005
Location: Vectorink.com
Posts: 3,660
Switcher is on a distinguished road

But he wrote it himself.
I assumed the OP was talking about some of the collaborations that have been mentioned here in the past. Nothing has ever come of those.

And I was only talking about projects here. I'm aware that there are plenty of open source projects that get completed.
__________________
Gerry
I thought all "jabuffi" was looking for was cnczone specific projects, only (also).

Anywho ...

Spiro was a one man project, but spalm still left it open for anyone to add to. Which is a good start for a larger project.



.
Reply With Quote

  #14   Ban this user!
Old 10-22-2006, 04:38 PM
 
Join Date: Oct 2006
Location: USA
Posts: 46
jabuffi is on a distinguished road

Initially I was, but after it became apparent that this forum had typically not gotten past the idea stages, I branched out and started proposing my own ideas... I'll admit I'm a sorry programmer too, but I still think it would be neat to use OpenCacsade as the basis for a powerful opensource application supporting both CAD & CAM... Dan, what "studying projects" were you reading about it? I'd like to see those...
Reply With Quote

  #15   Ban this user!
Old 10-22-2006, 05:57 PM
 
Join Date: Sep 2004
Location: USA
Posts: 147
Dan Falck is on a distinguished road

Here are a few Opencascade projects that I know of:

http://sourceforge.net/search/?type_...ds=opencascade

http://lignumcad.sourceforge.net/doc/en/HTML/index.html

http://cam.occ.googlepages.com/home


Dan
Reply With Quote

Sponsored Links
  #16   Ban this user!
Old 10-22-2006, 09:16 PM
 
Join Date: Oct 2006
Location: USA
Posts: 46
jabuffi is on a distinguished road

Dan- Thanks for the links. I've seen Cam.Occ, and I'll look into the other two...

Really obvious question (doing 3 things at once, so I'll ask it just in case someone answers before I have time to find it...) : Is OpenCascade written with the intention of being run in Linux, or something else? The reason I ask, if it were then that fact would greatly enhance the option of perhaps coupling it with EMC...
Reply With Quote

  #17   Ban this user!
Old 10-22-2006, 09:46 PM
 
Join Date: Oct 2006
Location: USA
Posts: 46
jabuffi is on a distinguished road

Wayne-
I think your previous reply on setting up a section code modules would be great! For now we could just start a string dedicated to that, just to get the ball rollin'...
Reply With Quote

  #18   Ban this user!
Old 10-22-2006, 10:23 PM
 
Join Date: Sep 2004
Location: USA
Posts: 147
Dan Falck is on a distinguished road

"Really obvious question (doing 3 things at once, so I'll ask it just in case someone answers before I have time to find it...) : Is OpenCascade written with the intention of being run in Linux, or something else? The reason I ask, if it were then that fact would greatly enhance the option of perhaps coupling it with EMC..."

Opencascade is open source and is currently set up for Windows and Linux. I run it under Ubuntu Linux.

Dan
Reply With Quote

  #19   Ban this user!
Old 10-22-2006, 10:40 PM
 
Join Date: Oct 2006
Location: USA
Posts: 46
jabuffi is on a distinguished road

Dan-

I'm curious: What do you currently use it for?
Reply With Quote

  #20   Ban this user!
Old 10-23-2006, 12:31 AM
 
Join Date: Sep 2004
Location: USA
Posts: 147
Dan Falck is on a distinguished road

I'm running and studying Opencascade, mainly to see how it's done. I am just a novice at it.
The guys who are writing the software in the links that I put up earlier can tell you a whole lot more about it than I can.

I am playing around with python programming and have found that I can write little scripts that can control larger programs in C. I have also taken other people's python programs, modified them and learned enough to be dangerous
If you want to check out a simple, but easy to understand python CAD type application, check this out:

http://members.localnet.com/~blanding/cadvas/

Doug made it really easy to understand how a CAD program can be written. I have been hacking it to extract entity data, in the hope to use it for CAM. I'm starting to make progress.



Dan
Reply With Quote

Sponsored Links
  #21   Ban this user!
Old 11-02-2006, 02:08 AM
 
Join Date: Mar 2004
Location: USA
Posts: 32
mpictor is on a distinguished road

Hi, I'm the guy writing cam-occ.

Originally Posted by jabuffi View Post
So: OpenCascade contains both Cad & Cam capability right (let me know...). And, its sourcecode is pretty clunky or there is a VERY steep learning curve on its implementation...
The OCC libraries contain much code that can be used in writing a CAD or CAM program, but it is *not* a turn-key, ready to go solution. (Not sure what you mean by "capability" - much of what you need is there, you just have to figure out which pieces to connect, and in what way.)

I wouldn't call the code clunky. It was good enough that Dassault bought all rights to their then-current version of Euclid, as well as Strim. Matra retained rights to all previous versions of Euclid, and then released this code as OpenCAS.CADE. Some of it is documented in French, so the code itself isn't alwasy easy to read - but they provide quite a bit of documentation in the form of pdfs and doxygen html.

It has a fairly steep learning curve which is offset by the demo programs they provide. (Alas, I have not figured out how to build them on x86-64 linux)

Originally Posted by jabuffi View Post
If my above two suppostions are correct, then what we need (in my opinion) would be to integrate OpenCascade into a higher level program (probably similar to what Dan's post illustrated) that could simplify use of the sourcecode... I'm thinking something that lets one draw intuitivly (Think easy like SolidWorks)
Heh... and I thought plain CAM was hard. I think something that lets you draw as easily as a professional package will be more difficult!

OCC does contain one demo of interactive 2d drawing, using Draw Harness. It's contained in CASROOT/ros/src/DrawResources/PROFIL.tcl . It's broken in occ6.1. If you want to try it, start DRAWEXE. Type in pload ALL and then source PROFIL.tcl

Originally Posted by jabuffi View Post
but translates back to what the source code needs. Second, it would allow for additional blocks of code to be input to do random things, like Wayne's suggestion (think "Add-Ins" in Excel). This way one could have a powerful solidmodeler with capability to perform a cam function after design is complete, output g-code to a machine, and allow for addition of opensourece modules like Spiro... A full, opensource solution for the entire gambut of Cad & Cam. Thoughts????
Sounds good, but CAM itself without any modeling capabilities is difficult enough for me

Mark
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On





All times are GMT -5. The time now is 01:01 AM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361