BRL-CAD 7.14.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News BRL-CAD 7.14.0 (Default branch)
# 1  
Old 11-08-2008
BRL-CAD 7.14.0 (Default branch)

Image BRL-CAD is a powerful constructive solid geometry solid modeling system that includes an interactive geometry editor, ray-tracing support for rendering and geometric analysis, path-tracing for realistic image synthesis, network distributed framebuffer support, and image and signal-processing tools. License: GNU Lesser General Public License (LGPL) Changes:
MGED has a powerful new 'search' command that is very similar to the UNIX find command but specifically tailored to geometry hierarchies. This release also provides a preview of many documentation improvements to come with the start of a new command help system within MGED. Other developments include numerous improvements to the Pro/E export plugin, the height field (DSP) primitive can now be exported to other geometry file formats, and much more. The INTAVAL importer is now fully integrated into BRL-CAD and included in the default install too. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Best OS for surveying / CAD applications

My first computer experience was in the mid 60's but I haven't kept up with the technology. My needs run more to math & calculations than to social networking. CAD drawing & communicating technical data on the internet is essential for me these days. Most of the post processed data I receive is in... (8 Replies)
Discussion started by: geometric
8 Replies

2. Answers to Frequently Asked Questions

Running Turbo-cad and circuit wizard programmes.

Hi. i am new to Linux. i have a Turbo-cad and circuit wizard programme on CD that I want to install and run. I keep getting the message I do not have an auto-run programme. Do I need to install specific drivers for this? What programme do I need? (1 Reply)
Discussion started by: Alfred Kruger
1 Replies

3. Shell Programming and Scripting

Need to search for a file which has a "cad" content in it?

Hi Guys, I need to search for a file which has the "cad" content in it. I forgot the file name. could you people give me the command to figure it out? Thanks Magesh (2 Replies)
Discussion started by: mac4rfree
2 Replies
Login or Register to Ask a Question
XkbAddGeomProperty(3)						   XKB FUNCTIONS					     XkbAddGeomProperty(3)

NAME
XkbAddGeomProperty - Add one property to an existing keyboard geometry description SYNOPSIS
XkbPropertyPtr XkbAddGeomProperty (XkbGeometryPtr geom, char *name, char *value); ARGUMENTS
- geom geometry to be updated - name name of the new property - value value for the new property DESCRIPTION
Xkb provides functions to add a single new element to the top-level keyboard geometry. In each case the num_ * fields of the corresponding structure is incremented by 1. These functions do not change sz_* unless there is no more room in the array. Some of these functions fill in the values of the element's structure from the arguments. For other functions, you must explicitly write code to fill the structure's elements. The top-level geometry description includes a list of geometry properties. A geometry property associates an arbitrary string with an equally arbitrary name. Programs that display images of keyboards can use geometry properties as hints, but they are not interpreted by Xkb. No other geometry structures refer to geometry properties. XkbAddGeomProperty adds one property with the specified name and value to the keyboard geometry specified by geom. XkbAddGeomProperty returns NULL if any of the parameters is empty or if it was not able to allocate space for the property. To allocate space for an arbitrary number of properties, use the XkbAllocGeomProps function. STRUCTURES
typedef struct _XkbProperty { char * name; /* property name */ char * value; /* property value */ } XkbPropertyRec,*XkbPropertyPtr; SEE ALSO
XkbAllocGeomProps(3) X Version 11 libX11 1.5.0 XkbAddGeomProperty(3)