Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Vector3.cpp
Package: 虚拟地形建模.rar [view]
Upload User: dfjhuyju
Upload Date: 2013-03-13
Package Size: 11035k
Code Size: 1k
Category:
OpenGL program
Development Platform:
Visual C++
- // Vector3.cpp: implementation of the CVector3 class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "LiFeng.h"
- #include "Vector3.h"
- #include <math.h>
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CVector3::CVector3()
- {
- }
- CVector3::~CVector3()
- {
- }
- CVector3 Cross(CVector3 vVector1, CVector3 vVector2)
- {
- CVector3 vNormal;
- vNormal.x = ((vVector1.y * vVector2.z) - (vVector1.z * vVector2.y));
- vNormal.y = ((vVector1.z * vVector2.x) - (vVector1.x * vVector2.z));
- vNormal.z = ((vVector1.x * vVector2.y) - (vVector1.y * vVector2.x));
- return vNormal;
- }
- float Magnitude(CVector3 vNormal)
- {
- return (float)sqrt( (vNormal.x * vNormal.x) +
- (vNormal.y * vNormal.y) +
- (vNormal.z * vNormal.z) );
- }
- CVector3 Normalize(CVector3 vVector)
- {
- float magnitude = Magnitude(vVector);
- vVector = vVector / magnitude;
- return vVector;
- }