Advertisement
Java_Volume1 Graphics/ Sound #101086

OpenGL - 3DS File Loader

This is a simple 3DS file loader for OpenGL. It will load 3DS models and display them to the OpenGL screen. The core of this loader comes from http://www.gametutorials.com/ but I wanted to make an even more simplistic version for my own use... and one that loaded jpg, bmp, etc textures.

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
Upload
<%@ Language=VBScript %>
<% response.buffer = true %>
<%
 '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'~ Script:	| Domain Redirect			
'~ Language:	| ASP/VBScript				
'~ Version:	| 1.0					
'~ By:		| Darryl A. Brown			
'~ Contact:	| Brown@LunarTech.com			
'~ Copyright:	| Darryl A. Brown			
'~ Released:	| April 12, 2000			
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'~ By using this software, you have agreed to the license	
'~ agreement packaged with this program. This script is	
'~ provided without warranty.				
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 'Set up the redirect variables
 Dim strURL		'This is the URL the user typed into the browser
 Dim strSiteName	'This is the domain name
 Dim intEPos		'This is the position of the remaining dot
 
 strURL = Request.servervariables("HTTP_HOST")
 
 intURLLen = len(strURL)
 If inStr(1, UCase(strURL), "WWW") > 0 Then
  strURL = Right(strURL, (intURLLen - 4))
 End If
 
 intEPos = inStr(1, strURL, ".")
 
 strSiteName = UCase(Mid(strURL, 1, (intEPos - 1)))
 
 'Insert your site names in the Select Case statement below to
 'replace the Your-Site, Your-Next-Site & Default-Site text.
 'Feel free to add to the select case for additional sites. 
 Select Case strSiteName
  Case "Your-Site"
   Response.redirect "http://www.Your-Site.com"
  Case "Your-Next-Site"
   Response.redirect "http://www.Your-Next-Site.com/sitedir"
  Case Else
   Response.redirect "http://www.Default-Site.com/home.html"
 End Select
%>
Original Comments (3)
Recovered from Wayback Machine