00001 00006 /* 00007 * PROGRAM NAME: sh 00008 * 00009 * (c) COPYRIGHT INTERNATIONAL BUSINESS MACHINES 00010 * CORPORATION 12/1/2001. ALL RIGHTS RESERVED. 00011 * 00012 * Please refer to the LICENSE file in the top directory 00013 * 00014 * author: Mike Henderson mhender@watson.ibm.com 00015 */ 00016 00017 static char *id="@(#) $Id: shline.c,v 1.2 2006/08/17 19:28:17 mhender Exp $"; 00018 00019 #include <shInternal.h> 00020 00031 void shline(float *x0,float *y0,float *z0,float *x1,float *y1,float *z1) 00032 { 00033 00034 /* Shade and render a line segment. */ 00035 00036 float nn[3]={0.,0.,0.}; 00037 int zero=0; 00038 00039 shlnonrm(x0,y0,z0,nn,x1,y1,z1,nn,&zero,&zero,&zero); 00040 00041 return; 00042 }