Chemical Structures 2.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Chemical Structures 2.1 (Default branch)
# 1  
Old 02-05-2008
Chemical Structures 2.1 (Default branch)

Image The Chemical Structures project aims to provide a complete set of 3D molecular structures in CML format. As CML format permits structural data and many properties to be included, each file also contains additional information, like molecular weight, boiling point, melting point, or InChI code. Data can be explored with a CML-aware software, like Jmol, or by using a Web browser. License: BSD License (revised) Changes:
The HTML pages have a new style and contain MicroFormat data. Many French translations have been added and Spanish translations are also available. New structures (like carbohydrates) have been added. The project now includes 559 structures.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Linux

about system structures

hello can any1 plz tell me about the system defined structures (like sysinfo) which wil give system and n/w charecteristics (ex: freeram in sysinfo). (1 Reply)
Discussion started by: jeenat
1 Replies

2. Programming

Programming using Structures

Hi All, I was given a format of a file, and was asked to write a program which displays the data contained in the file in that purticular format. Its all so confusing. Please find the example of the format as well the code I have written in the attachment. I hope any one of u guyz can... (0 Replies)
Discussion started by: jazz
0 Replies

3. Programming

pointer to structures

Dear friends I have a bit basic doubts in pointers and the structures inter relationships. the first one. static struct apvt { int dead; int pending; int abouttograb; }*agents=NULL; what agents pointer is... (1 Reply)
Discussion started by: tech_voip
1 Replies
Login or Register to Ask a Question
ImageByteOrder(3X11)						     MIT X11R4						      ImageByteOrder(3X11)

Name
       ImageByteOrder, BitmapBitOrder, BitmapPad, BitmapUnit, DisplayHeight, DisplayHeightMM, DisplayWidth, DisplayWidthMM, XListPixmapFormats,
       XPixmapFormatValues - image format functions and macros

Syntax
       XPixmapFormatValues *XListPixmapFormats(display, count_return)
	  Display *display;
	  int *count_return;

       ImageByteOrder(display)

       BitmapBitOrder(display)

       BitmapPad(display)

       BitmapUnit(display)

       DisplayHeight(display, screen_number)

       DisplayHeightMM(display, screen_number)

       DisplayWidth(display, screen_number)

       DisplayWidthMM(display, screen_number)

Arguments
       display	 Specifies the connection to the X server.

       count_return
		 Returns the number of pixmap formats that are supported by the display.

       screen_number
		 Specifies the appropriate screen number on the host server.

Description
       The function returns an array of structures that describe the types of Z format images that are supported by the specified display.  If
       insufficient memory is available, returns NULL.	To free the allocated storage for the structures, use

       The macro specifies the required byte order for images for each scanline unit in XY format (bitmap) or for each pixel value in Z format.

       The macro returns or to indicate whether the leftmost bit in the bitmap as displayed on the screen is the least or most significant bit in
       the unit.

       The macro returns the number of bits that each scanline must be padded.

       The macro returns the size of a bitmap's scanline unit in bits.

       The macro returns the height of the specified screen in pixels.

       The macro returns the height of the specified screen in millimeters.

       The macro returns the width of the screen in pixels.

       The macro returns the width of the specified screen in millimeters.

Structures
       The structure provides an interface to the pixmap format information that is returned at the time of a connection setup.  It contains:
       typedef struct {
	 int depth;
	 int bits_per_pixel;
	 int scanline_pad;
       } XPixmapFormatValues;

See Also
       AllPlanes(3X11), BlackPixelOfScreen(3X11), IsCursorKey(3X11), XFree(3X11)
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

															      ImageByteOrder(3X11)