Sponsored Content
Full Discussion: Big VG to normal VG
Operating Systems AIX Big VG to normal VG Post 302984557 by agent.kgb on Thursday 27th of October 2016 08:28:43 AM
Old 10-27-2016
if you don't need your data - yes. mkvg -f. Otherwise - no. Why do you want to get it back?
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to view a big file(143M big)

1 . Thanks everyone who read the post first. 2 . I have a log file which size is 143M , I can not use vi open it .I can not use xedit open it too. How to view it ? If I want to view 200-300 ,how can I implement it 3 . Thanks (3 Replies)
Discussion started by: chenhao_no1
3 Replies

2. Programming

how to know if a directory is normal one or subdomain?

there are 2 directiries under public_html directory: public_html/images public_html/pictures "images" is a normal directory (uploaded by ftp) and "pictures" is a subdomain (created in cPanel). if using cpanel, I know "pictures" is subdomain because it is displayed as subdomain in cpanel.... (1 Reply)
Discussion started by: hello20009876
1 Replies

3. Shell Programming and Scripting

su root from normal user

Got a cron to run everyday under my user. this cronjob runs a script from my /home/jack/scripts/run.sh clear # # su to root and run a script, return with result # su - # passwd # run /getfile.sh # return with result # the result will copy 2 files from /prod/app/logs/ and... (0 Replies)
Discussion started by: karthikn7974
0 Replies

4. UNIX for Dummies Questions & Answers

translate to normal english

lnode * head = temp; (1 Reply)
Discussion started by: rickym2626
1 Replies

5. UNIX for Dummies Questions & Answers

get the normal time

i have this script #!/bin/sh for i in Europe/Dublin Europe/Berlin US/Eastern US/Central US/Mountain US/Pacific do export TZ=$i case $1 in "") echo "`date` $i";; *) echo "`date` $i" | grep $1;; esac done how would i turn the time into the stand 12 hour time? (1 Reply)
Discussion started by: JamieMurry
1 Replies

6. UNIX for Dummies Questions & Answers

How big is too big a config.log file?

I have a 5000 line config.log file with several "maybe" errors. Any reccomendations on finding solvable problems? (2 Replies)
Discussion started by: NeedLotsofHelp
2 Replies

7. Shell Programming and Scripting

float to normal

I have a file with 2 columns . One of the line looks like the following. Is it possible to convert every float no in column 2 to integer. input NM_032881 6.03787973608527e-05 output 0.0000603787..... (2 Replies)
Discussion started by: quincyjones
2 Replies

8. HP-UX

High sys_call_rate but all else normal ??

Hello; I have a 11.31 system suddenly exhibiting a jump in the GBL_SYS_CALL_RATE in ovpa but all other stats look normal.. Traditional thinking is that this is caused by Apps code change but our DEV team said none was implemented. Normally one would expect to find corresponding increase in... (2 Replies)
Discussion started by: delphys
2 Replies
polygon_z_normal(3alleg4)					  Allegro manual					 polygon_z_normal(3alleg4)

NAME
polygon_z_normal, polygon_z_normal_f - Finds the Z component of the normal vector to three vertices. Allegro game programming library. SYNOPSIS
#include <allegro.h> fixed polygon_z_normal(const V3D *v1, const V3D *v2, const V3D *v3); float polygon_z_normal_f(const V3D_f *v1, const V3D_f *v2, const V3D_f *v3); DESCRIPTION
Finds the Z component of the normal vector to the specified three vertices (which must be part of a convex polygon). This is used mainly in back-face culling. The back-faces of closed polyhedra are never visible to the viewer, therefore they never need to be drawn. This can cull on average half the polygons from a scene. If the normal is negative the polygon can safely be culled. If it is zero, the polygon is per- pendicular to the screen. However, this method of culling back-faces must only be used once the X and Y coordinates have been projected into screen space using persp_project() (or if an orthographic (isometric) projection is being used). Note that this function will fail if the three vertices are co-linear (they lie on the same line) in 3D space. SEE ALSO
cross_product(3alleg4), ex3d(3alleg4) Allegro version 4.4.2 polygon_z_normal(3alleg4)
All times are GMT -4. The time now is 02:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy