Initial Commit
388
SnakeTest.py
Normal file
@@ -0,0 +1,388 @@
|
||||
import sqlite3
|
||||
import time
|
||||
import threading
|
||||
import tkinter
|
||||
from turtle import left, width
|
||||
import User
|
||||
import sys
|
||||
import tkinter as tk
|
||||
from direct import task
|
||||
from tkinter import SUNKEN, Scale, StringVar, Tcl, messagebox
|
||||
from random import random
|
||||
|
||||
#TODO Klassen erstellten
|
||||
|
||||
def button_event_close():
|
||||
print("Programm wird geschlossen")
|
||||
|
||||
return 0;
|
||||
|
||||
def guithread():
|
||||
|
||||
window_size_x = 1024
|
||||
window_size_y = 786
|
||||
|
||||
label_logged_in = tk.Label
|
||||
label_highscore = tk.Label
|
||||
label_lastlogin = tk.Label
|
||||
|
||||
|
||||
#Hauptfenster-Block
|
||||
window1 = tk.Tk() #Instanzierung von Fensterelement
|
||||
window1.wm_title("Snake v1.0")
|
||||
window1.geometry("1024x768")
|
||||
window1.attributes("-topmost", True)
|
||||
|
||||
|
||||
print("Erstelle User-Klassen Objekt")
|
||||
us = User.User()
|
||||
|
||||
#Mit der Parameterübergabe der Klasseninstantz Tk, kann auch in einer Methode oder Funktion die Instantz direkt manipuliert werden!
|
||||
def mainwindow_test(mainwindow : tk.Tk):
|
||||
mainwindow.quit()
|
||||
pass
|
||||
|
||||
def close_mainwindow():
|
||||
print("Programm wird geschlossen!")
|
||||
window1.quit()
|
||||
|
||||
def read_user(username, schaltf2:tk.Label, label_user_exists:tk.Label, all_listed_radiob:list): #Eingabeprüfung, bei Exception bei leerem String oder Eingabefeld
|
||||
unametemp = username #eingabefeld_wert.get()
|
||||
if(len(unametemp) != 0):
|
||||
print("Lese Nutzereingabe: ", unametemp, "\n")
|
||||
if(us.select(unametemp) == True):
|
||||
welcome_msg = "Willkommen, " + us.getusername()
|
||||
highscore_msg = "Dein letzter Highscore lag bei: " + str(us.gethighscore()) + " Punkten"
|
||||
lastlogin_msg = "Du warst das letzte Mal am: " + us.getlastlogin() + " am Spielen"
|
||||
label_logged_in = tk.Label(window1, text=welcome_msg)
|
||||
label_highscore = tk.Label(window1, text=highscore_msg)
|
||||
label_lastlogin = tk.Label(window1, text=lastlogin_msg)
|
||||
label_logged_in.place(x=180, y=50)
|
||||
label_highscore.place(x=180, y=80)
|
||||
label_lastlogin.place(x=180, y=110)
|
||||
label_user_exists.destroy()
|
||||
schaltf2.destroy()
|
||||
|
||||
#Zerstört alle gezeichneten Insantzen von Radiobuttons
|
||||
for radiobutton in all_listed_radiob:
|
||||
radiobutton.destroy()
|
||||
return
|
||||
else:
|
||||
print("Bitte etwas eingeben... Das Feld war leer!")
|
||||
return
|
||||
|
||||
def input_new_user(*events):
|
||||
|
||||
#Eingabefenster-Block
|
||||
subwindow1 = tk.Toplevel(window1)
|
||||
subwindow1.wm_title("Eingabe")
|
||||
subwindow1.geometry("400x200")
|
||||
subwindow1.resizable(0,0) #Blockiert ein Skalieren des Fensters
|
||||
window1.attributes("-topmost", False)
|
||||
subwindow1.attributes("-topmost", True)
|
||||
subwindow1.lift() #Hebt das Child-Fenster zumsammen mit attributes in den Vordergrund
|
||||
|
||||
|
||||
eingabewert = StringVar(subwindow1)
|
||||
def check_input():
|
||||
if(len(eingabewert.get()) <= 0):
|
||||
print("Es wurde keine Eingabe gemacht!")
|
||||
else:
|
||||
print(eingabewert.get())
|
||||
us.createuser(eingabewert.get())
|
||||
subwindow1.destroy()
|
||||
build_mainwindow(window1)
|
||||
return
|
||||
|
||||
textlabel = tk.Label(subwindow1, text="Bitte gib deinen Benutzernamen ein: ")
|
||||
label_new_user = tk.Entry(subwindow1, width=40, textvariable=eingabewert)
|
||||
button_ok = tk.Button(subwindow1, text="Erstellen", height=1, width=10, command=check_input)
|
||||
button_abort = tk.Button(subwindow1, text="Abbrechen", command=subwindow1.destroy)
|
||||
|
||||
textlabel.place(x=5, y=5)
|
||||
label_new_user.place(x=6, y=25)
|
||||
button_ok.place(x=5, y=150)
|
||||
button_abort.place(x=140, y=150)
|
||||
#label_new_user.place(x=window_size_x*0.25, y=window_size_y*0.6)
|
||||
|
||||
def build_mainwindow(window1 : tk.Tk):
|
||||
#Programmüberschrift
|
||||
label1 = tk.Label(window1, text="Snake v1.0 written by CB") #Fenster Funktion für Textausgabe
|
||||
label1.grid(row=0, column=0)
|
||||
#Schaltflächen und Buttons
|
||||
schaltf1 = tk.Button(window1, text="Fenster schließen", command=close_mainwindow)
|
||||
schaltf1.place(x=5, y=window_size_y-50)
|
||||
|
||||
aktuell_ausgewaehlt =""
|
||||
|
||||
|
||||
|
||||
if(us.checkuserdb() == False):
|
||||
#Anmeldedialog
|
||||
print("Noch kein Nutzer angelegt!")
|
||||
#messagebox.Message(master=None, message="Es wurde noch kein Spieler angelegt!", type=messagebox.OK, icon=messagebox.WARNING).show()
|
||||
input_new_user()
|
||||
|
||||
elif(us.checkuserdb() == True):
|
||||
print("Nutzer bereits vorhanden, wähle einen aus!")
|
||||
#us.listallusers()
|
||||
|
||||
users = us.listallusers()
|
||||
ausgewaehlt = tk.StringVar()
|
||||
|
||||
ausgewaehlt.set(0)
|
||||
def value_select():
|
||||
aktuell_ausgewaehlt = str(ausgewaehlt.get())
|
||||
print(aktuell_ausgewaehlt)
|
||||
return 0
|
||||
|
||||
print (aktuell_ausgewaehlt)
|
||||
|
||||
all_listed_radiob = list()
|
||||
|
||||
i = 0
|
||||
for einzelwert in users:
|
||||
radiob = tk.Radiobutton(window1, text=einzelwert, value=einzelwert, variable=ausgewaehlt, command=value_select)
|
||||
all_listed_radiob.append(radiob)
|
||||
print (users)
|
||||
radiob.place(x=5, y=150+i)
|
||||
i+=30
|
||||
|
||||
print("Alle Radiobuttons gesetzt!")
|
||||
|
||||
def login_user():
|
||||
print("Melde ausgewählten Nutzer an!\n")
|
||||
read_user(ausgewaehlt.get(), schaltf2, label_user_exists, all_listed_radiob)
|
||||
return 0
|
||||
|
||||
label_user_exists = tk.Label(window1, text="Wähle deinen Spieler aus: ")
|
||||
label_user_exists.place(x=2, y=30)
|
||||
#eingabefeld_wert=tk.StringVar()
|
||||
|
||||
#eingabefeld=tk.Entry(window1, textvariable=eingabefeld_wert)
|
||||
#eingabefeld.place(x=2, y=80)
|
||||
schaltf2 = tk.Button(window1, text="Auswählen", command=login_user)
|
||||
schaltf2.place(x=150, y=75)
|
||||
|
||||
build_mainwindow(window1)
|
||||
|
||||
#Nützliches Feature um zeitgesteuerte Events in Mainloop ausführen zu können
|
||||
def message():
|
||||
print('Keep yourself hyderated.')
|
||||
window1.after(2000, message)
|
||||
|
||||
#window1.after(2000, message)
|
||||
window1.mainloop() #Hauptschleife für gezeichnetes Fenster
|
||||
us.__del__() #Stellt sicher, dass User-Klassenobjekt im korrekten Thread beendet wird
|
||||
return 0;
|
||||
|
||||
|
||||
|
||||
class woscht(User.User):
|
||||
def __init__(self) -> None:
|
||||
UserInstanz = User
|
||||
print("Unterklasser der Userklasse erstellt!\n")
|
||||
print("So funktioniert die Klassenvererbung in Python...")
|
||||
print("Dies ermöglicht eine modulare Aufbauweise ohne sich ständig bei kleineren Abweichung wiederholen zu müssen ober ganze Abschnitte zu kopieren und einzufügen\n")
|
||||
|
||||
def Testfunkiton(self):
|
||||
print("Das ist eine Funktion, welche ausgeführt wird in einer Kindklasse. Sie existiert nicht in der Elternklasse!\n")
|
||||
pass
|
||||
def Testfunktion2(self):
|
||||
print("Weitere Funktion, welche bei initialisieren der Klasse aufgerufen wird.\n")
|
||||
pass
|
||||
|
||||
class woscht2(woscht):
|
||||
def __init__(self) -> None:
|
||||
woscht().Testfunktion2()
|
||||
print("Unterklasse der Woschtklasse\n")
|
||||
print("Die stellt eine Vererbung auf eine Vererbung dar. Hier können weitere Ergänzungen vorgenommen werden\n")
|
||||
pass
|
||||
|
||||
#Eine Schleife, welche unter Zuhilfenahme einer Rekursion entsteht.
|
||||
def recursive(zahl):
|
||||
if(zahl==100):
|
||||
print("Vorgang abgeschlossen!")
|
||||
return
|
||||
elif(zahl <= 100):
|
||||
zahl += 1
|
||||
time.sleep(0.001)
|
||||
print(zahl, end="\r")
|
||||
return recursive(zahl)
|
||||
else:
|
||||
print("Ergeniss konnte nicht erreicht werden!")
|
||||
return
|
||||
|
||||
|
||||
def main():
|
||||
t = threading.Thread(target=guithread ,args=())
|
||||
t.start()
|
||||
#recursive(0)
|
||||
#while(True):
|
||||
# pass
|
||||
|
||||
"""
|
||||
test = woscht()
|
||||
test.getusername()
|
||||
|
||||
test2 = woscht2()
|
||||
test2.Testfunkiton()
|
||||
|
||||
testtu = list()
|
||||
|
||||
#Mit dieser Funktion können mehrer Instanzen einer KLasse erstellt werden und im späteren Verlauf über den Listenindex bearbeitet werden.
|
||||
for i in range(5):
|
||||
testtu.append(woscht2())
|
||||
|
||||
print("Es wurden folgenden Klassen erstellt: ")
|
||||
print (len(testtu))
|
||||
|
||||
|
||||
for i in testtu:
|
||||
print(i)
|
||||
"""
|
||||
|
||||
|
||||
# FH = open("user.txt", "w")
|
||||
# FH.write(us.getusername())
|
||||
# FH.close()
|
||||
time.sleep(1)
|
||||
|
||||
return 0
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
||||
from math import pi, sin, cos
|
||||
|
||||
from direct.showbase.ShowBase import ShowBase
|
||||
from direct.task import Task
|
||||
from direct.actor.Actor import Actor
|
||||
from direct.interval.IntervalGlobal import Sequence
|
||||
from panda3d.core import Point3
|
||||
from panda3d.core import WindowProperties
|
||||
from panda3d.core import Loader
|
||||
|
||||
|
||||
|
||||
#class Game(ShowBase):
|
||||
# def __init__(self):
|
||||
# ShowBase.__init__(self)
|
||||
# properties = WindowProperties()
|
||||
# properties.setSize(1024, 768)
|
||||
# properties.setTitle("Snake v1 written by CB")
|
||||
# properties.setUndecorated(False)
|
||||
# self.win.requestProperties(properties)
|
||||
|
||||
# self.scene = self.loader.loadModel("models/environment")
|
||||
# self.scene.reparentTo(self.render)
|
||||
# self.pandaActor = Actor("models/panda-model",
|
||||
# {"walk": "models/panda-walk4"})
|
||||
# self.pandaActor.reparentTo(self.render)
|
||||
|
||||
|
||||
|
||||
#game = Game()
|
||||
#game.run()
|
||||
|
||||
from direct.showbase.ShowBase import ShowBase #Grundmodul zum Starten eines Fenster mit Grundszene
|
||||
from direct.gui.OnscreenText import OnscreenText #Ermöglicht die direkte Einblendung von Texten
|
||||
from direct.gui.DirectGui import * #Ermöglicht das Einblenden von Menüs und deren Manipulation
|
||||
from panda3d.core import TextNode #Texte
|
||||
from direct.task import Task
|
||||
|
||||
from panda3d.core import loadPrcFile #Ermöglicht das Laden eigener Konfigurationsdatein zur Panda3D API
|
||||
loadPrcFile("conf/conf.prc") #Pfadangabe zum .prc File
|
||||
|
||||
def butten_enter_pressed():
|
||||
print("Die Taste Enter wurde gedrückt!")
|
||||
|
||||
|
||||
class MyApp(ShowBase):
|
||||
def __init__(self):
|
||||
ShowBase.__init__(self) #Insantziert das Hauptfenster, diese stellen immer eine Instanz der ShowBase-Klasse dar
|
||||
|
||||
us = User.User()
|
||||
#Erstellt ein DialogFenster
|
||||
self.gameOverScreen = DirectDialog(frameSize = (-0.7, 0.7, -0.7, 0.7),
|
||||
fadeScreen = 0.4,
|
||||
relief = DGG.FLAT)
|
||||
|
||||
|
||||
|
||||
#Erstellt einen Button zum Parent-Dialogfenster
|
||||
self.btn = DirectButton(text = "Quit",
|
||||
command = self.quit,
|
||||
pos = (0.3, 0, -0.2),
|
||||
parent = self.gameOverScreen,
|
||||
scale = 0.09)
|
||||
|
||||
label_menu = DirectDialog(text="Hauptmenü", parent=self.gameOverScreen, scale = 1, pos=(0,0,0.5))
|
||||
if(us.checkuserdb() == False):
|
||||
#label_enter_name_msg = DirectDialog(parent=self.gameOverScreen, text="Gib deinen Namen ein:", scale=0.05, pos=(-0.6, 0.5,0))
|
||||
label_input = DirectEntry(parent=self.gameOverScreen, text="Name", width=15, scale = 0.05, pos=(-0.6,0.5,0), relief=SUNKEN)
|
||||
|
||||
self.taskMgr.doMethodLater(0.2,self.exampleTask, "exampleTask") #Hängt einen zustäzlichen Task in den Taskmanager ein
|
||||
|
||||
self.gameOverScreen.show()
|
||||
|
||||
# Create scene 1
|
||||
self.scene1_background = self.loader.loadModel("data/panda_example/Environment/Environment")
|
||||
self.scene1_background.reparentTo(self.render)
|
||||
self.scene1 = self.render.attachNewNode("Scene 1")
|
||||
self.scene1_text = OnscreenText(text="Scene 1", pos=(0, 0), scale=0.1, align=TextNode.ACenter)
|
||||
self.accept('enter', butten_enter_pressed)
|
||||
self.scene1_text.show()
|
||||
|
||||
|
||||
# Create scene 2
|
||||
self.scene2 = self.render.attachNewNode("Scene 2")
|
||||
self.scene2_text = OnscreenText(text="Scene 2", pos=(0, 0), scale=0.1, align=TextNode.ACenter)
|
||||
self.scene2_text.hide()
|
||||
|
||||
# Create toggle text
|
||||
self.toggle_text = OnscreenText(text="Toggle Scene: [SPACE] if it works!", pos=(0, -0.9), scale=0.08, align=TextNode.ACenter)
|
||||
|
||||
# Set initial scene
|
||||
self.current_scene = 1
|
||||
|
||||
# Set key bindings
|
||||
self.accept('space', self.toggle_scene)
|
||||
self.accept('escape', self.quit)
|
||||
|
||||
# Position and orient the camera
|
||||
self.camera.setPos(0, -10, 0) # Set camera position
|
||||
self.camera.lookAt(0, 0, 0) # Point camera towards the origin
|
||||
"""
|
||||
for i in range(5):
|
||||
time.sleep(3)
|
||||
label_menu['text'] = "WOSCHT" + str(i)"""
|
||||
|
||||
|
||||
def toggle_scene(self):
|
||||
if self.current_scene == 1:
|
||||
self.scene1_text.hide()
|
||||
self.scene2_text.show()
|
||||
self.current_scene = 2
|
||||
else:
|
||||
self.scene2_text.hide()
|
||||
self.scene1_text.show()
|
||||
self.current_scene = 1
|
||||
|
||||
def quit(self):
|
||||
self.taskMgr.destroy()
|
||||
self.destroy()
|
||||
time.sleep(1)
|
||||
sys.exit()
|
||||
|
||||
#Dieser Task wird bei Berechnungs jeden Frames ausgeführt
|
||||
x=0
|
||||
def exampleTask(self, task):
|
||||
self.btn['text'] = "Woscht" + str(self.x)
|
||||
if(self.x==200):
|
||||
return task.done
|
||||
self.x +=1
|
||||
return task.again
|
||||
|
||||
app = MyApp()
|
||||
app.run()
|
||||
130
User.py
Normal file
@@ -0,0 +1,130 @@
|
||||
import sqlite3
|
||||
|
||||
#from sqlite3.dbapi2 import Cursor
|
||||
|
||||
# Start einer Userklasse
|
||||
# Lade, sofern vorhanden, Spieler aus der Datenbank
|
||||
|
||||
|
||||
class User:
|
||||
__usercount = 0
|
||||
__highscore = 0
|
||||
__uid = -1
|
||||
__username = ""
|
||||
__db_player_exist = 0
|
||||
__lastlogin = ""
|
||||
__played_time = 0
|
||||
__all_listed_users = list()
|
||||
#__sql_create_table = "CREATE TABLE IF NOT EXISTS user ( `id` INTEGER PRIMARY KEY, `username` VARCHAR(100) NOT NULL , `highscore` INT NOT NULL)"
|
||||
__sql_create_table = """CREATE TABLE IF NOT EXISTS "user" (
|
||||
"id" INTEGER UNIQUE,
|
||||
"username" VARCHAR(100) NOT NULL,
|
||||
"highscore" INT NOT NULL,
|
||||
"lastlogin" TEXT,
|
||||
"played_time" INTEGER,
|
||||
PRIMARY KEY("id")
|
||||
);"""
|
||||
|
||||
__sqlhandle = 0 #Statichandle
|
||||
|
||||
def __init__(self) -> None:
|
||||
|
||||
print("Userklasse erstellt")
|
||||
|
||||
if(len(self.__username) <= 0 or self.__user == "") and (self.__uid == -1):
|
||||
#print("Es existieren noch keine Daten!")
|
||||
|
||||
if(self.__sqlhandle == 0):
|
||||
self.__sqlhandle = sqlite3.connect("user.db")
|
||||
cursor = self.__sqlhandle.cursor()
|
||||
cursor.execute(self.__sql_create_table)
|
||||
self.__sqlhandle.commit()
|
||||
|
||||
def __del__(self):
|
||||
print("Userklasse zerstört")
|
||||
if(self.__sqlhandle != 0):
|
||||
print(self.__sqlhandle)
|
||||
print("Datenbank wird ordentlich geschlossen\n")
|
||||
self.__sqlhandle.close()
|
||||
self.__sqlhandle = 0
|
||||
#print(self.__sqlhandle) Debug only
|
||||
|
||||
|
||||
def createuser(self, username :str):
|
||||
if(len(username) > 0):
|
||||
cursor = self.__sqlhandle.cursor()
|
||||
if(cursor != 0):
|
||||
if(self.__username == ""):
|
||||
print("SQLHANDLE:", self.__sqlhandle)
|
||||
sql = "INSERT INTO user (username, highscore, lastlogin) VALUES('"+username+"', 0, datetime())"
|
||||
try:
|
||||
cursor.execute(sql)
|
||||
self.__sqlhandle.commit()
|
||||
print("User hinzugefügt!")
|
||||
except:
|
||||
print("Es ist beim Erstellen es Spielers ein Fehler aufgetreten!")
|
||||
else:
|
||||
print("Scheinbar besteht keine Verbindung zur Datenbank")
|
||||
else:
|
||||
print("Es wurde kein Name übergeben")
|
||||
|
||||
|
||||
def select(self, username):
|
||||
sql = "SELECT * FROM user WHERE username ='"+username+"'"
|
||||
sql_update_login_date = "UPDATE user SET lastlogin = datetime() WHERE username = '"+username+"'"
|
||||
try:
|
||||
c = self.__sqlhandle.cursor()
|
||||
row = c.execute(sql)
|
||||
res = row.fetchone()
|
||||
c.execute(sql_update_login_date)
|
||||
|
||||
self.__sqlhandle.commit()
|
||||
self.__uid = res[0]
|
||||
self.__username = res[1]
|
||||
self.__highscore = res[2]
|
||||
self.__lastlogin = res[3]
|
||||
|
||||
except:
|
||||
print("Fehler bei der Nutzerauswahl")
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
def getplayed_time(self):
|
||||
return self.__played_time
|
||||
|
||||
def getlastlogin(self):
|
||||
return self.__lastlogin
|
||||
|
||||
def getusername(self):
|
||||
return self.__username
|
||||
|
||||
|
||||
def gethighscore(self):
|
||||
return self.__highscore
|
||||
|
||||
def getuid(self):
|
||||
return self.__uid
|
||||
|
||||
def listallusers(self):
|
||||
cursor = self.__sqlhandle.cursor()
|
||||
|
||||
for row in cursor.execute("SELECT * FROM user"):
|
||||
print("ID:",row[0],", Username:", row[1], ", Highscore:", row[2])
|
||||
self.__all_listed_users.append(row[1])
|
||||
print (self.__all_listed_users)
|
||||
|
||||
cursor.close()
|
||||
self.__sqlhandle.commit()
|
||||
|
||||
return self.__all_listed_users
|
||||
|
||||
def checkuserdb(self):
|
||||
cursor = self.__sqlhandle.cursor()
|
||||
rows=cursor.execute("SELECT * FROM user")
|
||||
rows_count =len(list(rows))
|
||||
if(rows_count >= 1):
|
||||
#print("Es gibt", rows_count, "Datensätze")
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
6652
data/models/Test-Background.egg
Normal file
39126
data/models/Test-Text!.egg
Normal file
BIN
data/panda_example/BambooLaser/bambooLaser.blend
Normal file
74
data/panda_example/BambooLaser/bambooLaser.egg
Normal file
@@ -0,0 +1,74 @@
|
||||
<CoordinateSystem> { Z-up }
|
||||
<Material> Material {
|
||||
<Scalar> diffr { 0.640000 }
|
||||
<Scalar> diffg { 0.640000 }
|
||||
<Scalar> diffb { 0.640000 }
|
||||
<Scalar> specr { 0.500000 }
|
||||
<Scalar> specg { 0.500000 }
|
||||
<Scalar> specb { 0.500000 }
|
||||
<Scalar> shininess { 12.5 }
|
||||
<Scalar> ambr { 1.000000 }
|
||||
<Scalar> ambg { 1.000000 }
|
||||
<Scalar> ambb { 1.000000 }
|
||||
<Scalar> emitr { 0.000000 }
|
||||
<Scalar> emitg { 0.000000 }
|
||||
<Scalar> emitb { 0.000000 }
|
||||
}
|
||||
|
||||
<Texture> Texture {
|
||||
"./tex/bambooLaser.png"
|
||||
<Scalar> envtype { MODULATE }
|
||||
<Scalar> minfilter { LINEAR_MIPMAP_LINEAR }
|
||||
<Scalar> magfilter { LINEAR_MIPMAP_LINEAR }
|
||||
<Scalar> wrap { REPEAT }
|
||||
}
|
||||
|
||||
<Group> Plane {
|
||||
<Transform> {
|
||||
<Matrix4> {
|
||||
1.0 0.0 0.0 0.0
|
||||
0.0 1.0 0.0 0.0
|
||||
0.0 0.0 1.0 0.0
|
||||
0.0 0.0 0.0 1.0
|
||||
}
|
||||
}
|
||||
|
||||
<VertexPool> Plane {
|
||||
|
||||
<Vertex> 0 {-0.060651 0.000000 0.000000
|
||||
<UV> {
|
||||
0.000000 0.000000
|
||||
<Tangent> {1.000000 0.000000 0.000000}
|
||||
<Binormal> {0.000000 1.000000 0.000000}
|
||||
}
|
||||
}
|
||||
<Vertex> 1 {0.060651 0.000000 0.000000
|
||||
<UV> {
|
||||
1.000000 0.000000
|
||||
<Tangent> {1.000000 0.000000 0.000000}
|
||||
<Binormal> {0.000000 1.000000 0.000000}
|
||||
}
|
||||
}
|
||||
<Vertex> 2 {0.060651 1.000000 0.000000
|
||||
<UV> {
|
||||
1.000000 1.000000
|
||||
<Tangent> {1.000000 0.000000 0.000000}
|
||||
<Binormal> {0.000000 1.000000 0.000000}
|
||||
}
|
||||
}
|
||||
<Vertex> 3 {-0.060651 1.000000 0.000000
|
||||
<UV> {
|
||||
0.000000 1.000000
|
||||
<Tangent> {1.000000 0.000000 0.000000}
|
||||
<Binormal> {0.000000 1.000000 0.000000}
|
||||
}
|
||||
}}
|
||||
|
||||
|
||||
<Polygon> {
|
||||
<TRef> { Texture }
|
||||
<MRef> { Material }
|
||||
<Normal> {0.000000 0.000000 1.000000}
|
||||
<VertexRef> { 0 1 2 3 <Ref> { Plane }}
|
||||
}
|
||||
}
|
||||
904
data/panda_example/BambooLaser/bambooLaserHit.egg
Normal file
@@ -0,0 +1,904 @@
|
||||
<CoordinateSystem> { Z-up }
|
||||
<Material> Material.001 {
|
||||
<Scalar> diffr { 0.640000 }
|
||||
<Scalar> diffg { 0.640000 }
|
||||
<Scalar> diffb { 0.640000 }
|
||||
<Scalar> specr { 0.500000 }
|
||||
<Scalar> specg { 0.500000 }
|
||||
<Scalar> specb { 0.500000 }
|
||||
<Scalar> shininess { 12.5 }
|
||||
<Scalar> ambr { 1.000000 }
|
||||
<Scalar> ambg { 1.000000 }
|
||||
<Scalar> ambb { 1.000000 }
|
||||
<Scalar> emitr { 0.000000 }
|
||||
<Scalar> emitg { 0.000000 }
|
||||
<Scalar> emitb { 0.000000 }
|
||||
}
|
||||
|
||||
<Texture> Texture.001 {
|
||||
"./tex/bambooLaserHit.png"
|
||||
<Scalar> envtype { MODULATE }
|
||||
<Scalar> minfilter { LINEAR_MIPMAP_LINEAR }
|
||||
<Scalar> magfilter { LINEAR_MIPMAP_LINEAR }
|
||||
<Scalar> wrap { REPEAT }
|
||||
}
|
||||
|
||||
<Group> Circle {
|
||||
<Transform> {
|
||||
<Matrix4> {
|
||||
1.0 0.0 0.0 0.0
|
||||
0.0 -4.371138828673793e-08 1.0 0.0
|
||||
0.0 -1.0 -4.371138828673793e-08 0.0
|
||||
0.0 0.0 0.0 1.0
|
||||
}
|
||||
}
|
||||
|
||||
<VertexPool> Circle {
|
||||
|
||||
<Vertex> 0 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.320485 0.861397 -0.394062}
|
||||
<Binormal> {-0.357207 -0.275392 -0.892503}
|
||||
}
|
||||
}
|
||||
<Vertex> 1 {-0.000040 0.606035 0.420309
|
||||
<UV> {
|
||||
0.508108 0.996442
|
||||
<Tangent> {0.320485 0.861397 -0.394062}
|
||||
<Binormal> {-0.357207 -0.275392 -0.892503}
|
||||
}
|
||||
}
|
||||
<Vertex> 2 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.320485 0.861397 -0.394062}
|
||||
<Binormal> {-0.357207 -0.275392 -0.892503}
|
||||
}
|
||||
}
|
||||
<Vertex> 3 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.688914 -0.619123 0.376941}
|
||||
<Binormal> {-0.097984 -0.594802 -0.797878}
|
||||
}
|
||||
}
|
||||
<Vertex> 4 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.688914 -0.619123 0.376941}
|
||||
<Binormal> {-0.097984 -0.594802 -0.797878}
|
||||
}
|
||||
}
|
||||
<Vertex> 5 {-0.584090 0.549871 0.433053
|
||||
<UV> {
|
||||
0.106414 0.855879
|
||||
<Tangent> {0.688914 -0.619123 0.376941}
|
||||
<Binormal> {-0.097984 -0.594802 -0.797878}
|
||||
}
|
||||
}
|
||||
<Vertex> 6 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.162002 0.893098 -0.419680}
|
||||
<Binormal> {-0.869495 -0.071916 -0.488678}
|
||||
}
|
||||
}
|
||||
<Vertex> 7 {-0.584090 0.549871 0.433053
|
||||
<UV> {
|
||||
0.106414 0.855879
|
||||
<Tangent> {0.162002 0.893098 -0.419680}
|
||||
<Binormal> {-0.869495 -0.071916 -0.488678}
|
||||
}
|
||||
}
|
||||
<Vertex> 8 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.162002 0.893098 -0.419680}
|
||||
<Binormal> {-0.869496 -0.071916 -0.488678}
|
||||
}
|
||||
}
|
||||
<Vertex> 9 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.962586 -0.270580 0.014658}
|
||||
<Binormal> {-0.216484 -0.800422 -0.558981}
|
||||
}
|
||||
}
|
||||
<Vertex> 10 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.962586 -0.270580 0.014658}
|
||||
<Binormal> {-0.216484 -0.800422 -0.558981}
|
||||
}
|
||||
}
|
||||
<Vertex> 11 {-0.624392 0.019494 0.284255
|
||||
<UV> {
|
||||
0.007742 0.485952
|
||||
<Tangent> {0.962586 -0.270580 0.014658}
|
||||
<Binormal> {-0.216484 -0.800422 -0.558981}
|
||||
}
|
||||
}
|
||||
<Vertex> 12 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.965547 -0.259823 0.014509}
|
||||
<Binormal> {0.218227 0.778074 -0.589049}
|
||||
}
|
||||
}
|
||||
<Vertex> 13 {-0.624392 0.019494 0.284255
|
||||
<UV> {
|
||||
0.007742 0.485952
|
||||
<Tangent> {0.965547 -0.259823 0.014509}
|
||||
<Binormal> {0.218227 0.778074 -0.589049}
|
||||
}
|
||||
}
|
||||
<Vertex> 14 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {0.965547 -0.259823 0.014509}
|
||||
<Binormal> {0.218227 0.778074 -0.589049}
|
||||
}
|
||||
}
|
||||
<Vertex> 15 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {-0.145219 0.806234 0.573496}
|
||||
<Binormal> {0.872024 0.378138 -0.310783}
|
||||
}
|
||||
}
|
||||
<Vertex> 16 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {-0.145219 0.806234 0.573496}
|
||||
<Binormal> {0.872024 0.378138 -0.310783}
|
||||
}
|
||||
}
|
||||
<Vertex> 17 {-0.762050 -0.714309 0.532251
|
||||
<UV> {
|
||||
0.114427 0.121014
|
||||
<Tangent> {-0.145219 0.806234 0.573496}
|
||||
<Binormal> {0.872024 0.378138 -0.310783}
|
||||
}
|
||||
}
|
||||
<Vertex> 18 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.689788 -0.552317 -0.468122}
|
||||
<Binormal> {0.023160 0.663069 -0.748200}
|
||||
}
|
||||
}
|
||||
<Vertex> 19 {-0.762050 -0.714309 0.532251
|
||||
<UV> {
|
||||
0.114427 0.121014
|
||||
<Tangent> {0.689788 -0.552317 -0.468122}
|
||||
<Binormal> {0.023160 0.663069 -0.748200}
|
||||
}
|
||||
}
|
||||
<Vertex> 20 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.689788 -0.552317 -0.468122}
|
||||
<Binormal> {0.023160 0.663069 -0.748200}
|
||||
}
|
||||
}
|
||||
<Vertex> 21 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.423187 0.832570 0.357407}
|
||||
<Binormal> {0.329760 0.225884 -0.916643}
|
||||
}
|
||||
}
|
||||
<Vertex> 22 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.423187 0.832570 0.357407}
|
||||
<Binormal> {0.329760 0.225884 -0.916643}
|
||||
}
|
||||
}
|
||||
<Vertex> 23 {0.005700 -0.510633 0.305495
|
||||
<UV> {
|
||||
0.513885 -0.000311
|
||||
<Tangent> {0.423187 0.832570 0.357407}
|
||||
<Binormal> {0.329760 0.225884 -0.916643}
|
||||
}
|
||||
}
|
||||
<Vertex> 24 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.421792 -0.857683 -0.294059}
|
||||
<Binormal> {-0.305578 0.170876 -0.936709}
|
||||
}
|
||||
}
|
||||
<Vertex> 25 {0.005700 -0.510633 0.305495
|
||||
<UV> {
|
||||
0.513885 -0.000311
|
||||
<Tangent> {0.421792 -0.857683 -0.294059}
|
||||
<Binormal> {-0.305578 0.170876 -0.936709}
|
||||
}
|
||||
}
|
||||
<Vertex> 26 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.421792 -0.857683 -0.294059}
|
||||
<Binormal> {-0.305578 0.170876 -0.936709}
|
||||
}
|
||||
}
|
||||
<Vertex> 27 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.785662 0.468121 0.404473}
|
||||
<Binormal> {0.035949 0.618143 -0.785243}
|
||||
}
|
||||
}
|
||||
<Vertex> 28 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.785662 0.468121 0.404473}
|
||||
<Binormal> {0.035949 0.618143 -0.785243}
|
||||
}
|
||||
}
|
||||
<Vertex> 29 {0.675860 -0.565052 0.348550
|
||||
<UV> {
|
||||
0.914921 0.142322
|
||||
<Tangent> {0.785662 0.468121 0.404473}
|
||||
<Binormal> {0.035949 0.618143 -0.785243}
|
||||
}
|
||||
}
|
||||
<Vertex> 30 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.366959 -0.873225 -0.320653}
|
||||
<Binormal> {-0.803651 -0.123994 -0.582040}
|
||||
}
|
||||
}
|
||||
<Vertex> 31 {0.675860 -0.565052 0.348550
|
||||
<UV> {
|
||||
0.914921 0.142322
|
||||
<Tangent> {0.366959 -0.873225 -0.320653}
|
||||
<Binormal> {-0.803651 -0.123993 -0.582040}
|
||||
}
|
||||
}
|
||||
<Vertex> 32 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.366959 -0.873225 -0.320653}
|
||||
<Binormal> {-0.803651 -0.123993 -0.582040}
|
||||
}
|
||||
}
|
||||
<Vertex> 33 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.953779 0.300253 -0.012390}
|
||||
<Binormal> {-0.254641 0.785622 -0.563877}
|
||||
}
|
||||
}
|
||||
<Vertex> 34 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.953779 0.300253 -0.012390}
|
||||
<Binormal> {-0.254641 0.785621 -0.563877}
|
||||
}
|
||||
}
|
||||
<Vertex> 35 {0.813753 0.016127 0.365772
|
||||
<UV> {
|
||||
0.987070 0.480846
|
||||
<Tangent> {0.953779 0.300253 -0.012390}
|
||||
<Binormal> {-0.254641 0.785622 -0.563877}
|
||||
}
|
||||
}
|
||||
<Vertex> 36 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.955330 0.295324 -0.011294}
|
||||
<Binormal> {0.241151 -0.801043 -0.547884}
|
||||
}
|
||||
}
|
||||
<Vertex> 37 {0.813753 0.016127 0.365772
|
||||
<UV> {
|
||||
0.987070 0.480846
|
||||
<Tangent> {0.955330 0.295324 -0.011294}
|
||||
<Binormal> {0.241151 -0.801043 -0.547884}
|
||||
}
|
||||
}
|
||||
<Vertex> 38 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.955330 0.295324 -0.011294}
|
||||
<Binormal> {0.241151 -0.801043 -0.547884}
|
||||
}
|
||||
}
|
||||
<Vertex> 39 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.218601 -0.833677 0.507145}
|
||||
<Binormal> {0.854554 -0.087363 -0.511962}
|
||||
}
|
||||
}
|
||||
<Vertex> 40 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.218601 -0.833677 0.507145}
|
||||
<Binormal> {0.854554 -0.087363 -0.511962}
|
||||
}
|
||||
}
|
||||
<Vertex> 41 {0.472066 0.471012 0.294014
|
||||
<UV> {
|
||||
0.882388 0.875213
|
||||
<Tangent> {0.218601 -0.833677 0.507145}
|
||||
<Binormal> {0.854554 -0.087363 -0.511962}
|
||||
}
|
||||
}
|
||||
<Vertex> 42 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.729113 0.592399 -0.342721}
|
||||
<Binormal> {0.086138 -0.576215 -0.812746}
|
||||
}
|
||||
}
|
||||
<Vertex> 43 {0.472066 0.471012 0.294014
|
||||
<UV> {
|
||||
0.882388 0.875213
|
||||
<Tangent> {0.729113 0.592399 -0.342721}
|
||||
<Binormal> {0.086138 -0.576215 -0.812746}
|
||||
}
|
||||
}
|
||||
<Vertex> 44 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.729113 0.592399 -0.342721}
|
||||
<Binormal> {0.086138 -0.576215 -0.812746}
|
||||
}
|
||||
}
|
||||
<Vertex> 45 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.317362 -0.858966 0.401821}
|
||||
<Binormal> {0.359985 -0.282885 -0.889037}
|
||||
}
|
||||
}
|
||||
<Vertex> 46 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.317362 -0.858966 0.401821}
|
||||
<Binormal> {0.359984 -0.282885 -0.889037}
|
||||
}
|
||||
}
|
||||
<Vertex> 47 {-0.000040 0.606035 0.420309
|
||||
<UV> {
|
||||
0.508108 0.996442
|
||||
<Tangent> {0.317362 -0.858966 0.401821}
|
||||
<Binormal> {0.359985 -0.282885 -0.889037}
|
||||
}
|
||||
}
|
||||
<Vertex> 48 {0.472066 0.471012 0.294014
|
||||
<UV> {
|
||||
0.882388 0.875213
|
||||
<Tangent> {0.685442 0.629480 -0.365956}
|
||||
<Binormal> {-0.566914 0.145981 -0.810740}
|
||||
}
|
||||
}
|
||||
<Vertex> 49 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.685442 0.629480 -0.365956}
|
||||
<Binormal> {-0.566914 0.145981 -0.810740}
|
||||
}
|
||||
}
|
||||
<Vertex> 50 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.685442 0.629480 -0.365956}
|
||||
<Binormal> {-0.566914 0.145981 -0.810740}
|
||||
}
|
||||
}
|
||||
<Vertex> 51 {-0.000040 0.606035 0.420309
|
||||
<UV> {
|
||||
0.508108 0.996442
|
||||
<Tangent> {0.996760 -0.066803 0.044788}
|
||||
<Binormal> {0.080427 0.827902 -0.555076}
|
||||
}
|
||||
}
|
||||
<Vertex> 52 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.996760 -0.066803 0.044788}
|
||||
<Binormal> {0.080427 0.827902 -0.555076}
|
||||
}
|
||||
}
|
||||
<Vertex> 53 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.996760 -0.066803 0.044788}
|
||||
<Binormal> {0.080427 0.827902 -0.555076}
|
||||
}
|
||||
}
|
||||
<Vertex> 54 {-0.584090 0.549871 0.433053
|
||||
<UV> {
|
||||
0.106414 0.855879
|
||||
<Tangent> {0.643901 -0.657670 0.390974}
|
||||
<Binormal> {0.601648 0.119550 -0.789764}
|
||||
}
|
||||
}
|
||||
<Vertex> 55 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.643901 -0.657670 0.390974}
|
||||
<Binormal> {0.601648 0.119550 -0.789764}
|
||||
}
|
||||
}
|
||||
<Vertex> 56 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.643901 -0.657670 0.390974}
|
||||
<Binormal> {0.601648 0.119550 -0.789764}
|
||||
}
|
||||
}
|
||||
<Vertex> 57 {-0.624392 0.019494 0.284255
|
||||
<UV> {
|
||||
0.007742 0.485952
|
||||
<Tangent> {0.736477 -0.676194 0.019070}
|
||||
<Binormal> {0.014047 -0.012897 -0.999818}
|
||||
}
|
||||
}
|
||||
<Vertex> 58 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.736477 -0.676194 0.019070}
|
||||
<Binormal> {0.014047 -0.012897 -0.999818}
|
||||
}
|
||||
}
|
||||
<Vertex> 59 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {0.736477 -0.676194 0.019070}
|
||||
<Binormal> {0.014047 -0.012897 -0.999818}
|
||||
}
|
||||
}
|
||||
<Vertex> 60 {-0.762050 -0.714309 0.532251
|
||||
<UV> {
|
||||
0.114427 0.121014
|
||||
<Tangent> {0.653739 -0.581827 -0.483841}
|
||||
<Binormal> {-0.633155 -0.070409 -0.770816}
|
||||
}
|
||||
}
|
||||
<Vertex> 61 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {0.653739 -0.581827 -0.483841}
|
||||
<Binormal> {-0.633155 -0.070409 -0.770816}
|
||||
}
|
||||
}
|
||||
<Vertex> 62 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.653739 -0.581827 -0.483841}
|
||||
<Binormal> {-0.633155 -0.070409 -0.770816}
|
||||
}
|
||||
}
|
||||
<Vertex> 63 {0.005700 -0.510633 0.305495
|
||||
<UV> {
|
||||
0.513885 -0.000311
|
||||
<Tangent> {0.935403 0.295214 0.194601}
|
||||
<Binormal> {0.353583 -0.780989 -0.514816}
|
||||
}
|
||||
}
|
||||
<Vertex> 64 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.935403 0.295214 0.194601}
|
||||
<Binormal> {0.353583 -0.780989 -0.514816}
|
||||
}
|
||||
}
|
||||
<Vertex> 65 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.935403 0.295214 0.194601}
|
||||
<Binormal> {0.353583 -0.780989 -0.514816}
|
||||
}
|
||||
}
|
||||
<Vertex> 66 {0.675860 -0.565052 0.348550
|
||||
<UV> {
|
||||
0.914921 0.142322
|
||||
<Tangent> {0.756143 0.505894 0.415113}
|
||||
<Binormal> {0.540724 -0.125703 -0.831755}
|
||||
}
|
||||
}
|
||||
<Vertex> 67 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.756143 0.505894 0.415113}
|
||||
<Binormal> {0.540724 -0.125703 -0.831755}
|
||||
}
|
||||
}
|
||||
<Vertex> 68 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.756143 0.505894 0.415113}
|
||||
<Binormal> {0.540724 -0.125703 -0.831755}
|
||||
}
|
||||
}
|
||||
<Vertex> 69 {0.813753 0.016127 0.365772
|
||||
<UV> {
|
||||
0.987070 0.480846
|
||||
<Tangent> {0.804737 0.588295 -0.079417}
|
||||
<Binormal> {-0.064112 -0.046868 -0.996842}
|
||||
}
|
||||
}
|
||||
<Vertex> 70 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.804737 0.588295 -0.079417}
|
||||
<Binormal> {-0.064112 -0.046868 -0.996841}
|
||||
}
|
||||
}
|
||||
<Vertex> 71 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.804737 0.588295 -0.079417}
|
||||
<Binormal> {-0.064112 -0.046868 -0.996842}
|
||||
}
|
||||
}
|
||||
<Vertex> 72 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.754387 0.650035 0.091402}
|
||||
<Binormal> {0.069242 0.059664 -0.995814}
|
||||
}
|
||||
}
|
||||
<Vertex> 73 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.754387 0.650035 0.091402}
|
||||
<Binormal> {0.069242 0.059664 -0.995814}
|
||||
}
|
||||
}
|
||||
<Vertex> 74 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.754387 0.650035 0.091402}
|
||||
<Binormal> {0.069242 0.059664 -0.995814}
|
||||
}
|
||||
}
|
||||
<Vertex> 75 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.824038 0.558859 0.092945}
|
||||
<Binormal> {0.328398 -0.337506 -0.882182}
|
||||
}
|
||||
}
|
||||
<Vertex> 76 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.824038 0.558859 0.092945}
|
||||
<Binormal> {0.328398 -0.337506 -0.882182}
|
||||
}
|
||||
}
|
||||
<Vertex> 77 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.824037 0.558859 0.092945}
|
||||
<Binormal> {0.328398 -0.337506 -0.882182}
|
||||
}
|
||||
}
|
||||
<Vertex> 78 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.994939 0.065622 0.076089}
|
||||
<Binormal> {0.100477 -0.649798 -0.753437}
|
||||
}
|
||||
}
|
||||
<Vertex> 79 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.994939 0.065622 0.076089}
|
||||
<Binormal> {0.100477 -0.649798 -0.753437}
|
||||
}
|
||||
}
|
||||
<Vertex> 80 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.994939 0.065622 0.076089}
|
||||
<Binormal> {0.100477 -0.649798 -0.753437}
|
||||
}
|
||||
}
|
||||
<Vertex> 81 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.860586 -0.508581 0.027159}
|
||||
<Binormal> {-0.214394 -0.410122 -0.886474}
|
||||
}
|
||||
}
|
||||
<Vertex> 82 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {0.860586 -0.508581 0.027159}
|
||||
<Binormal> {-0.214394 -0.410122 -0.886474}
|
||||
}
|
||||
}
|
||||
<Vertex> 83 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.860586 -0.508581 0.027159}
|
||||
<Binormal> {-0.214394 -0.410122 -0.886473}
|
||||
}
|
||||
}
|
||||
<Vertex> 84 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {0.756974 -0.653435 0.003693}
|
||||
<Binormal> {0.002796 -0.002413 -0.999993}
|
||||
}
|
||||
}
|
||||
<Vertex> 85 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.756974 -0.653435 0.003693}
|
||||
<Binormal> {0.002796 -0.002413 -0.999993}
|
||||
}
|
||||
}
|
||||
<Vertex> 86 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.756974 -0.653435 0.003693}
|
||||
<Binormal> {0.002796 -0.002413 -0.999993}
|
||||
}
|
||||
}
|
||||
<Vertex> 87 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.855540 -0.517687 -0.007191}
|
||||
<Binormal> {0.233718 0.398566 -0.886860}
|
||||
}
|
||||
}
|
||||
<Vertex> 88 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.855540 -0.517687 -0.007191}
|
||||
<Binormal> {0.233718 0.398566 -0.886860}
|
||||
}
|
||||
}
|
||||
<Vertex> 89 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.855540 -0.517687 -0.007191}
|
||||
<Binormal> {0.233718 0.398566 -0.886860}
|
||||
}
|
||||
}
|
||||
<Vertex> 90 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.999874 -0.010389 0.012045}
|
||||
<Binormal> {0.015907 0.653021 -0.757173}
|
||||
}
|
||||
}
|
||||
<Vertex> 91 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.999874 -0.010389 0.012045}
|
||||
<Binormal> {0.015907 0.653021 -0.757173}
|
||||
}
|
||||
}
|
||||
<Vertex> 92 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.999874 -0.010389 0.012045}
|
||||
<Binormal> {0.015907 0.653021 -0.757173}
|
||||
}
|
||||
}
|
||||
<Vertex> 93 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.879359 0.459226 0.125856}
|
||||
<Binormal> {-0.116667 0.464053 -0.878091}
|
||||
}
|
||||
}
|
||||
<Vertex> 94 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.879359 0.459226 0.125856}
|
||||
<Binormal> {-0.116667 0.464053 -0.878091}
|
||||
}
|
||||
}
|
||||
<Vertex> 95 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.879359 0.459226 0.125856}
|
||||
<Binormal> {-0.116667 0.464053 -0.878091}
|
||||
}
|
||||
}}
|
||||
|
||||
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.877321 -0.219438 0.426796}
|
||||
<VertexRef> { 0 1 2 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.718190 0.470432 0.512735}
|
||||
<VertexRef> { 3 4 5 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.466619 -0.764894 0.444077}
|
||||
<VertexRef> { 6 7 8 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.162982 0.829051 0.534894}
|
||||
<VertexRef> { 9 10 11 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.141759 -0.807967 0.571921}
|
||||
<VertexRef> { 12 13 14 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.467425 0.757968 0.454971}
|
||||
<VertexRef> { 15 16 17 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.723641 -0.470168 0.505258}
|
||||
<VertexRef> { 18 19 20 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.843902 0.178957 0.505770}
|
||||
<VertexRef> { 21 22 23 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.853647 0.190014 0.484954}
|
||||
<VertexRef> { 24 25 26 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.617611 -0.468823 0.631476}
|
||||
<VertexRef> { 27 28 29 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.468494 0.747269 0.471278}
|
||||
<VertexRef> { 30 31 32 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.159572 -0.825766 0.540969}
|
||||
<VertexRef> { 33 34 35 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.170851 0.836478 0.520687}
|
||||
<VertexRef> { 36 37 38 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.471117 -0.693325 0.545298}
|
||||
<VertexRef> { 39 40 41 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.678951 0.471154 0.563063}
|
||||
<VertexRef> { 42 43 44 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.877321 -0.219437 0.426796}
|
||||
<VertexRef> { 45 46 47 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.456922 0.456922 -0.763180}
|
||||
<VertexRef> { 48 49 50 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.000000 0.830593 -0.556880}
|
||||
<VertexRef> { 51 52 53 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.472664 0.472664 -0.743759}
|
||||
<VertexRef> { 54 55 56 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.676317 0.000000 -0.736611}
|
||||
<VertexRef> { 57 58 59 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.414416 -0.414415 -0.810259}
|
||||
<VertexRef> { 60 61 62 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.000000 -0.834922 -0.550369}
|
||||
<VertexRef> { 63 64 65 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.368599 -0.368599 -0.853387}
|
||||
<VertexRef> { 66 67 68 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.590159 0.000000 -0.807287}
|
||||
<VertexRef> { 69 70 71 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.652767 0.000000 -0.757558}
|
||||
<VertexRef> { 72 73 74 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.461646 -0.461646 -0.757474}
|
||||
<VertexRef> { 75 76 77 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.000000 -0.653103 -0.757269}
|
||||
<VertexRef> { 78 79 80 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.461982 -0.461982 -0.757064}
|
||||
<VertexRef> { 81 82 83 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.653439 0.000000 -0.756979}
|
||||
<VertexRef> { 84 85 86 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.461982 0.461982 -0.757064}
|
||||
<VertexRef> { 87 88 89 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {-0.000000 0.653103 -0.757269}
|
||||
<VertexRef> { 90 91 92 <Ref> { Circle }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.001 }
|
||||
<MRef> { Material.001 }
|
||||
<Normal> {0.461646 0.461646 -0.757474}
|
||||
<VertexRef> { 93 94 95 <Ref> { Circle }}
|
||||
}
|
||||
}
|
||||
904
data/panda_example/BambooLaser/playerHit.egg
Normal file
@@ -0,0 +1,904 @@
|
||||
<CoordinateSystem> { Z-up }
|
||||
<Material> Material.002 {
|
||||
<Scalar> diffr { 0.640000 }
|
||||
<Scalar> diffg { 0.640000 }
|
||||
<Scalar> diffb { 0.640000 }
|
||||
<Scalar> specr { 0.500000 }
|
||||
<Scalar> specg { 0.500000 }
|
||||
<Scalar> specb { 0.500000 }
|
||||
<Scalar> shininess { 12.5 }
|
||||
<Scalar> ambr { 1.000000 }
|
||||
<Scalar> ambg { 1.000000 }
|
||||
<Scalar> ambb { 1.000000 }
|
||||
<Scalar> emitr { 0.000000 }
|
||||
<Scalar> emitg { 0.000000 }
|
||||
<Scalar> emitb { 0.000000 }
|
||||
}
|
||||
|
||||
<Texture> Texture.002 {
|
||||
"./tex/playerHit.png"
|
||||
<Scalar> envtype { MODULATE }
|
||||
<Scalar> minfilter { LINEAR_MIPMAP_LINEAR }
|
||||
<Scalar> magfilter { LINEAR_MIPMAP_LINEAR }
|
||||
<Scalar> wrap { REPEAT }
|
||||
}
|
||||
|
||||
<Group> Circle.001 {
|
||||
<Transform> {
|
||||
<Matrix4> {
|
||||
1.0 0.0 0.0 0.0
|
||||
0.0 -4.371138828673793e-08 1.0 0.0
|
||||
0.0 -1.0 -4.371138828673793e-08 0.0
|
||||
0.0 0.0 0.0 1.0
|
||||
}
|
||||
}
|
||||
|
||||
<VertexPool> Circle.001 {
|
||||
|
||||
<Vertex> 0 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.320485 0.861397 -0.394062}
|
||||
<Binormal> {-0.357207 -0.275392 -0.892503}
|
||||
}
|
||||
}
|
||||
<Vertex> 1 {-0.000040 0.606035 0.420309
|
||||
<UV> {
|
||||
0.508108 0.996442
|
||||
<Tangent> {0.320485 0.861397 -0.394062}
|
||||
<Binormal> {-0.357207 -0.275392 -0.892503}
|
||||
}
|
||||
}
|
||||
<Vertex> 2 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.320485 0.861397 -0.394062}
|
||||
<Binormal> {-0.357207 -0.275392 -0.892503}
|
||||
}
|
||||
}
|
||||
<Vertex> 3 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.688914 -0.619123 0.376941}
|
||||
<Binormal> {-0.097984 -0.594802 -0.797878}
|
||||
}
|
||||
}
|
||||
<Vertex> 4 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.688914 -0.619123 0.376941}
|
||||
<Binormal> {-0.097984 -0.594802 -0.797878}
|
||||
}
|
||||
}
|
||||
<Vertex> 5 {-0.584090 0.549871 0.433053
|
||||
<UV> {
|
||||
0.106414 0.855879
|
||||
<Tangent> {0.688914 -0.619123 0.376941}
|
||||
<Binormal> {-0.097984 -0.594802 -0.797878}
|
||||
}
|
||||
}
|
||||
<Vertex> 6 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.162002 0.893098 -0.419680}
|
||||
<Binormal> {-0.869495 -0.071916 -0.488678}
|
||||
}
|
||||
}
|
||||
<Vertex> 7 {-0.584090 0.549871 0.433053
|
||||
<UV> {
|
||||
0.106414 0.855879
|
||||
<Tangent> {0.162002 0.893098 -0.419680}
|
||||
<Binormal> {-0.869495 -0.071916 -0.488678}
|
||||
}
|
||||
}
|
||||
<Vertex> 8 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.162002 0.893098 -0.419680}
|
||||
<Binormal> {-0.869496 -0.071916 -0.488678}
|
||||
}
|
||||
}
|
||||
<Vertex> 9 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.962586 -0.270580 0.014658}
|
||||
<Binormal> {-0.216484 -0.800422 -0.558981}
|
||||
}
|
||||
}
|
||||
<Vertex> 10 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.962586 -0.270580 0.014658}
|
||||
<Binormal> {-0.216484 -0.800422 -0.558981}
|
||||
}
|
||||
}
|
||||
<Vertex> 11 {-0.624392 0.019494 0.284255
|
||||
<UV> {
|
||||
0.007742 0.485952
|
||||
<Tangent> {0.962586 -0.270580 0.014658}
|
||||
<Binormal> {-0.216484 -0.800422 -0.558981}
|
||||
}
|
||||
}
|
||||
<Vertex> 12 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.965547 -0.259823 0.014509}
|
||||
<Binormal> {0.218227 0.778074 -0.589049}
|
||||
}
|
||||
}
|
||||
<Vertex> 13 {-0.624392 0.019494 0.284255
|
||||
<UV> {
|
||||
0.007742 0.485952
|
||||
<Tangent> {0.965547 -0.259823 0.014509}
|
||||
<Binormal> {0.218227 0.778074 -0.589049}
|
||||
}
|
||||
}
|
||||
<Vertex> 14 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {0.965547 -0.259823 0.014509}
|
||||
<Binormal> {0.218227 0.778074 -0.589049}
|
||||
}
|
||||
}
|
||||
<Vertex> 15 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {-0.145219 0.806234 0.573496}
|
||||
<Binormal> {0.872024 0.378138 -0.310783}
|
||||
}
|
||||
}
|
||||
<Vertex> 16 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {-0.145219 0.806234 0.573496}
|
||||
<Binormal> {0.872024 0.378138 -0.310783}
|
||||
}
|
||||
}
|
||||
<Vertex> 17 {-0.762050 -0.714309 0.532251
|
||||
<UV> {
|
||||
0.114427 0.121014
|
||||
<Tangent> {-0.145219 0.806234 0.573496}
|
||||
<Binormal> {0.872024 0.378138 -0.310783}
|
||||
}
|
||||
}
|
||||
<Vertex> 18 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.689788 -0.552317 -0.468122}
|
||||
<Binormal> {0.023160 0.663069 -0.748200}
|
||||
}
|
||||
}
|
||||
<Vertex> 19 {-0.762050 -0.714309 0.532251
|
||||
<UV> {
|
||||
0.114427 0.121014
|
||||
<Tangent> {0.689788 -0.552317 -0.468122}
|
||||
<Binormal> {0.023160 0.663069 -0.748200}
|
||||
}
|
||||
}
|
||||
<Vertex> 20 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.689788 -0.552317 -0.468122}
|
||||
<Binormal> {0.023160 0.663069 -0.748200}
|
||||
}
|
||||
}
|
||||
<Vertex> 21 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.423187 0.832570 0.357407}
|
||||
<Binormal> {0.329760 0.225884 -0.916643}
|
||||
}
|
||||
}
|
||||
<Vertex> 22 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.423187 0.832570 0.357407}
|
||||
<Binormal> {0.329760 0.225884 -0.916643}
|
||||
}
|
||||
}
|
||||
<Vertex> 23 {0.005700 -0.510633 0.305495
|
||||
<UV> {
|
||||
0.513885 -0.000311
|
||||
<Tangent> {0.423187 0.832570 0.357407}
|
||||
<Binormal> {0.329760 0.225884 -0.916643}
|
||||
}
|
||||
}
|
||||
<Vertex> 24 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.421792 -0.857683 -0.294059}
|
||||
<Binormal> {-0.305578 0.170876 -0.936709}
|
||||
}
|
||||
}
|
||||
<Vertex> 25 {0.005700 -0.510633 0.305495
|
||||
<UV> {
|
||||
0.513885 -0.000311
|
||||
<Tangent> {0.421792 -0.857683 -0.294059}
|
||||
<Binormal> {-0.305578 0.170876 -0.936709}
|
||||
}
|
||||
}
|
||||
<Vertex> 26 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.421792 -0.857683 -0.294059}
|
||||
<Binormal> {-0.305578 0.170876 -0.936709}
|
||||
}
|
||||
}
|
||||
<Vertex> 27 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.785662 0.468121 0.404473}
|
||||
<Binormal> {0.035949 0.618143 -0.785243}
|
||||
}
|
||||
}
|
||||
<Vertex> 28 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.785662 0.468121 0.404473}
|
||||
<Binormal> {0.035949 0.618143 -0.785243}
|
||||
}
|
||||
}
|
||||
<Vertex> 29 {0.675860 -0.565052 0.348550
|
||||
<UV> {
|
||||
0.914921 0.142322
|
||||
<Tangent> {0.785662 0.468121 0.404473}
|
||||
<Binormal> {0.035949 0.618143 -0.785243}
|
||||
}
|
||||
}
|
||||
<Vertex> 30 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.366959 -0.873225 -0.320653}
|
||||
<Binormal> {-0.803651 -0.123994 -0.582040}
|
||||
}
|
||||
}
|
||||
<Vertex> 31 {0.675860 -0.565052 0.348550
|
||||
<UV> {
|
||||
0.914921 0.142322
|
||||
<Tangent> {0.366959 -0.873225 -0.320653}
|
||||
<Binormal> {-0.803651 -0.123993 -0.582040}
|
||||
}
|
||||
}
|
||||
<Vertex> 32 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.366959 -0.873225 -0.320653}
|
||||
<Binormal> {-0.803651 -0.123993 -0.582040}
|
||||
}
|
||||
}
|
||||
<Vertex> 33 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.953779 0.300253 -0.012390}
|
||||
<Binormal> {-0.254641 0.785622 -0.563877}
|
||||
}
|
||||
}
|
||||
<Vertex> 34 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.953779 0.300253 -0.012390}
|
||||
<Binormal> {-0.254641 0.785621 -0.563877}
|
||||
}
|
||||
}
|
||||
<Vertex> 35 {0.813753 0.016127 0.365772
|
||||
<UV> {
|
||||
0.987070 0.480846
|
||||
<Tangent> {0.953779 0.300253 -0.012390}
|
||||
<Binormal> {-0.254641 0.785622 -0.563877}
|
||||
}
|
||||
}
|
||||
<Vertex> 36 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.955330 0.295324 -0.011294}
|
||||
<Binormal> {0.241151 -0.801043 -0.547884}
|
||||
}
|
||||
}
|
||||
<Vertex> 37 {0.813753 0.016127 0.365772
|
||||
<UV> {
|
||||
0.987070 0.480846
|
||||
<Tangent> {0.955330 0.295324 -0.011294}
|
||||
<Binormal> {0.241151 -0.801043 -0.547884}
|
||||
}
|
||||
}
|
||||
<Vertex> 38 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.955330 0.295324 -0.011294}
|
||||
<Binormal> {0.241151 -0.801043 -0.547884}
|
||||
}
|
||||
}
|
||||
<Vertex> 39 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.218601 -0.833677 0.507145}
|
||||
<Binormal> {0.854554 -0.087363 -0.511962}
|
||||
}
|
||||
}
|
||||
<Vertex> 40 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.218601 -0.833677 0.507145}
|
||||
<Binormal> {0.854554 -0.087363 -0.511962}
|
||||
}
|
||||
}
|
||||
<Vertex> 41 {0.472066 0.471012 0.294014
|
||||
<UV> {
|
||||
0.882388 0.875213
|
||||
<Tangent> {0.218601 -0.833677 0.507145}
|
||||
<Binormal> {0.854554 -0.087363 -0.511962}
|
||||
}
|
||||
}
|
||||
<Vertex> 42 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.729113 0.592399 -0.342721}
|
||||
<Binormal> {0.086138 -0.576215 -0.812746}
|
||||
}
|
||||
}
|
||||
<Vertex> 43 {0.472066 0.471012 0.294014
|
||||
<UV> {
|
||||
0.882388 0.875213
|
||||
<Tangent> {0.729113 0.592399 -0.342721}
|
||||
<Binormal> {0.086138 -0.576215 -0.812746}
|
||||
}
|
||||
}
|
||||
<Vertex> 44 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.729113 0.592399 -0.342721}
|
||||
<Binormal> {0.086138 -0.576215 -0.812746}
|
||||
}
|
||||
}
|
||||
<Vertex> 45 {-0.000040 0.007517 0.112580
|
||||
<UV> {
|
||||
0.503951 0.482574
|
||||
<Tangent> {0.317362 -0.858966 0.401821}
|
||||
<Binormal> {0.359985 -0.282885 -0.889037}
|
||||
}
|
||||
}
|
||||
<Vertex> 46 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.317362 -0.858966 0.401821}
|
||||
<Binormal> {0.359984 -0.282885 -0.889037}
|
||||
}
|
||||
}
|
||||
<Vertex> 47 {-0.000040 0.606035 0.420309
|
||||
<UV> {
|
||||
0.508108 0.996442
|
||||
<Tangent> {0.317362 -0.858966 0.401821}
|
||||
<Binormal> {0.359985 -0.282885 -0.889037}
|
||||
}
|
||||
}
|
||||
<Vertex> 48 {0.472066 0.471012 0.294014
|
||||
<UV> {
|
||||
0.882388 0.875213
|
||||
<Tangent> {0.685442 0.629480 -0.365956}
|
||||
<Binormal> {-0.566914 0.145981 -0.810740}
|
||||
}
|
||||
}
|
||||
<Vertex> 49 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.685442 0.629480 -0.365956}
|
||||
<Binormal> {-0.566914 0.145981 -0.810740}
|
||||
}
|
||||
}
|
||||
<Vertex> 50 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.685442 0.629480 -0.365956}
|
||||
<Binormal> {-0.566914 0.145981 -0.810740}
|
||||
}
|
||||
}
|
||||
<Vertex> 51 {-0.000040 0.606035 0.420309
|
||||
<UV> {
|
||||
0.508108 0.996442
|
||||
<Tangent> {0.996760 -0.066803 0.044788}
|
||||
<Binormal> {0.080427 0.827902 -0.555076}
|
||||
}
|
||||
}
|
||||
<Vertex> 52 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.996760 -0.066803 0.044788}
|
||||
<Binormal> {0.080427 0.827902 -0.555076}
|
||||
}
|
||||
}
|
||||
<Vertex> 53 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.996760 -0.066803 0.044788}
|
||||
<Binormal> {0.080427 0.827902 -0.555076}
|
||||
}
|
||||
}
|
||||
<Vertex> 54 {-0.584090 0.549871 0.433053
|
||||
<UV> {
|
||||
0.106414 0.855879
|
||||
<Tangent> {0.643901 -0.657670 0.390974}
|
||||
<Binormal> {0.601648 0.119550 -0.789764}
|
||||
}
|
||||
}
|
||||
<Vertex> 55 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.643901 -0.657670 0.390974}
|
||||
<Binormal> {0.601648 0.119550 -0.789764}
|
||||
}
|
||||
}
|
||||
<Vertex> 56 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.643901 -0.657670 0.390974}
|
||||
<Binormal> {0.601648 0.119550 -0.789764}
|
||||
}
|
||||
}
|
||||
<Vertex> 57 {-0.624392 0.019494 0.284255
|
||||
<UV> {
|
||||
0.007742 0.485952
|
||||
<Tangent> {0.736477 -0.676194 0.019070}
|
||||
<Binormal> {0.014047 -0.012897 -0.999818}
|
||||
}
|
||||
}
|
||||
<Vertex> 58 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.736477 -0.676194 0.019070}
|
||||
<Binormal> {0.014047 -0.012897 -0.999818}
|
||||
}
|
||||
}
|
||||
<Vertex> 59 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {0.736477 -0.676194 0.019070}
|
||||
<Binormal> {0.014047 -0.012897 -0.999818}
|
||||
}
|
||||
}
|
||||
<Vertex> 60 {-0.762050 -0.714309 0.532251
|
||||
<UV> {
|
||||
0.114427 0.121014
|
||||
<Tangent> {0.653739 -0.581827 -0.483841}
|
||||
<Binormal> {-0.633155 -0.070409 -0.770816}
|
||||
}
|
||||
}
|
||||
<Vertex> 61 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {0.653739 -0.581827 -0.483841}
|
||||
<Binormal> {-0.633155 -0.070409 -0.770816}
|
||||
}
|
||||
}
|
||||
<Vertex> 62 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.653739 -0.581827 -0.483841}
|
||||
<Binormal> {-0.633155 -0.070409 -0.770816}
|
||||
}
|
||||
}
|
||||
<Vertex> 63 {0.005700 -0.510633 0.305495
|
||||
<UV> {
|
||||
0.513885 -0.000311
|
||||
<Tangent> {0.935403 0.295214 0.194601}
|
||||
<Binormal> {0.353583 -0.780989 -0.514816}
|
||||
}
|
||||
}
|
||||
<Vertex> 64 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.935403 0.295214 0.194601}
|
||||
<Binormal> {0.353583 -0.780989 -0.514816}
|
||||
}
|
||||
}
|
||||
<Vertex> 65 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.935403 0.295214 0.194601}
|
||||
<Binormal> {0.353583 -0.780989 -0.514816}
|
||||
}
|
||||
}
|
||||
<Vertex> 66 {0.675860 -0.565052 0.348550
|
||||
<UV> {
|
||||
0.914921 0.142322
|
||||
<Tangent> {0.756143 0.505894 0.415113}
|
||||
<Binormal> {0.540724 -0.125703 -0.831755}
|
||||
}
|
||||
}
|
||||
<Vertex> 67 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.756143 0.505894 0.415113}
|
||||
<Binormal> {0.540724 -0.125703 -0.831755}
|
||||
}
|
||||
}
|
||||
<Vertex> 68 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.756143 0.505894 0.415113}
|
||||
<Binormal> {0.540724 -0.125703 -0.831755}
|
||||
}
|
||||
}
|
||||
<Vertex> 69 {0.813753 0.016127 0.365772
|
||||
<UV> {
|
||||
0.987070 0.480846
|
||||
<Tangent> {0.804737 0.588295 -0.079417}
|
||||
<Binormal> {-0.064112 -0.046868 -0.996842}
|
||||
}
|
||||
}
|
||||
<Vertex> 70 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.804737 0.588295 -0.079417}
|
||||
<Binormal> {-0.064112 -0.046868 -0.996841}
|
||||
}
|
||||
}
|
||||
<Vertex> 71 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.804737 0.588295 -0.079417}
|
||||
<Binormal> {-0.064112 -0.046868 -0.996842}
|
||||
}
|
||||
}
|
||||
<Vertex> 72 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.754387 0.650035 0.091402}
|
||||
<Binormal> {0.069242 0.059664 -0.995814}
|
||||
}
|
||||
}
|
||||
<Vertex> 73 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.754387 0.650035 0.091402}
|
||||
<Binormal> {0.069242 0.059664 -0.995814}
|
||||
}
|
||||
}
|
||||
<Vertex> 74 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.754387 0.650035 0.091402}
|
||||
<Binormal> {0.069242 0.059664 -0.995814}
|
||||
}
|
||||
}
|
||||
<Vertex> 75 {0.319821 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.926755 0.362059
|
||||
<Tangent> {0.824038 0.558859 0.092945}
|
||||
<Binormal> {0.328398 -0.337506 -0.882182}
|
||||
}
|
||||
}
|
||||
<Vertex> 76 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.824038 0.558859 0.092945}
|
||||
<Binormal> {0.328398 -0.337506 -0.882182}
|
||||
}
|
||||
}
|
||||
<Vertex> 77 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.824037 0.558859 0.092945}
|
||||
<Binormal> {0.328398 -0.337506 -0.882182}
|
||||
}
|
||||
}
|
||||
<Vertex> 78 {0.132451 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.778290 0.101344
|
||||
<Tangent> {0.994939 0.065622 0.076089}
|
||||
<Binormal> {0.100477 -0.649798 -0.753437}
|
||||
}
|
||||
}
|
||||
<Vertex> 79 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.994939 0.065622 0.076089}
|
||||
<Binormal> {0.100477 -0.649798 -0.753437}
|
||||
}
|
||||
}
|
||||
<Vertex> 80 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.994939 0.065622 0.076089}
|
||||
<Binormal> {0.100477 -0.649798 -0.753437}
|
||||
}
|
||||
}
|
||||
<Vertex> 81 {-0.132531 -0.312345 0.004689
|
||||
<UV> {
|
||||
0.316918 0.076400
|
||||
<Tangent> {0.860586 -0.508581 0.027159}
|
||||
<Binormal> {-0.214394 -0.410122 -0.886474}
|
||||
}
|
||||
}
|
||||
<Vertex> 82 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {0.860586 -0.508581 0.027159}
|
||||
<Binormal> {-0.214394 -0.410122 -0.886474}
|
||||
}
|
||||
}
|
||||
<Vertex> 83 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.860586 -0.508581 0.027159}
|
||||
<Binormal> {-0.214394 -0.410122 -0.886473}
|
||||
}
|
||||
}
|
||||
<Vertex> 84 {-0.319902 -0.124975 0.004689
|
||||
<UV> {
|
||||
0.089462 0.303856
|
||||
<Tangent> {0.756974 -0.653435 0.003693}
|
||||
<Binormal> {0.002796 -0.002413 -0.999993}
|
||||
}
|
||||
}
|
||||
<Vertex> 85 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.756974 -0.653435 0.003693}
|
||||
<Binormal> {0.002796 -0.002413 -0.999993}
|
||||
}
|
||||
}
|
||||
<Vertex> 86 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.756974 -0.653435 0.003693}
|
||||
<Binormal> {0.002796 -0.002413 -0.999993}
|
||||
}
|
||||
}
|
||||
<Vertex> 87 {-0.319902 0.140008 0.004689
|
||||
<UV> {
|
||||
0.081147 0.657136
|
||||
<Tangent> {0.855540 -0.517687 -0.007191}
|
||||
<Binormal> {0.233718 0.398566 -0.886860}
|
||||
}
|
||||
}
|
||||
<Vertex> 88 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.855540 -0.517687 -0.007191}
|
||||
<Binormal> {0.233718 0.398566 -0.886860}
|
||||
}
|
||||
}
|
||||
<Vertex> 89 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.855540 -0.517687 -0.007191}
|
||||
<Binormal> {0.233718 0.398566 -0.886860}
|
||||
}
|
||||
}
|
||||
<Vertex> 90 {-0.132531 0.327378 0.004689
|
||||
<UV> {
|
||||
0.304445 0.897064
|
||||
<Tangent> {0.999874 -0.010389 0.012045}
|
||||
<Binormal> {0.015907 0.653021 -0.757173}
|
||||
}
|
||||
}
|
||||
<Vertex> 91 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.999874 -0.010389 0.012045}
|
||||
<Binormal> {0.015907 0.653021 -0.757173}
|
||||
}
|
||||
}
|
||||
<Vertex> 92 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.999874 -0.010389 0.012045}
|
||||
<Binormal> {0.015907 0.653021 -0.757173}
|
||||
}
|
||||
}
|
||||
<Vertex> 93 {0.132451 0.327378 0.004689
|
||||
<UV> {
|
||||
0.695142 0.901221
|
||||
<Tangent> {0.879359 0.459226 0.125856}
|
||||
<Binormal> {-0.116667 0.464053 -0.878091}
|
||||
}
|
||||
}
|
||||
<Vertex> 94 {0.319821 0.140008 0.004689
|
||||
<UV> {
|
||||
0.910126 0.702867
|
||||
<Tangent> {0.879359 0.459226 0.125856}
|
||||
<Binormal> {-0.116667 0.464053 -0.878091}
|
||||
}
|
||||
}
|
||||
<Vertex> 95 {-0.000327 0.007517 -0.271175
|
||||
<UV> {
|
||||
0.503870 0.482574
|
||||
<Tangent> {0.879359 0.459226 0.125856}
|
||||
<Binormal> {-0.116667 0.464053 -0.878091}
|
||||
}
|
||||
}}
|
||||
|
||||
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.877321 -0.219438 0.426796}
|
||||
<VertexRef> { 0 1 2 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.718190 0.470432 0.512735}
|
||||
<VertexRef> { 3 4 5 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.466619 -0.764894 0.444077}
|
||||
<VertexRef> { 6 7 8 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.162982 0.829051 0.534894}
|
||||
<VertexRef> { 9 10 11 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.141759 -0.807967 0.571921}
|
||||
<VertexRef> { 12 13 14 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.467425 0.757968 0.454971}
|
||||
<VertexRef> { 15 16 17 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.723641 -0.470168 0.505258}
|
||||
<VertexRef> { 18 19 20 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.843902 0.178957 0.505770}
|
||||
<VertexRef> { 21 22 23 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.853647 0.190014 0.484954}
|
||||
<VertexRef> { 24 25 26 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.617611 -0.468823 0.631476}
|
||||
<VertexRef> { 27 28 29 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.468494 0.747269 0.471278}
|
||||
<VertexRef> { 30 31 32 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.159572 -0.825766 0.540969}
|
||||
<VertexRef> { 33 34 35 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.170851 0.836478 0.520687}
|
||||
<VertexRef> { 36 37 38 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.471117 -0.693325 0.545298}
|
||||
<VertexRef> { 39 40 41 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.678951 0.471154 0.563063}
|
||||
<VertexRef> { 42 43 44 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.877321 -0.219437 0.426796}
|
||||
<VertexRef> { 45 46 47 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.456922 0.456922 -0.763180}
|
||||
<VertexRef> { 48 49 50 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.000000 0.830593 -0.556880}
|
||||
<VertexRef> { 51 52 53 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.472664 0.472664 -0.743759}
|
||||
<VertexRef> { 54 55 56 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.676317 0.000000 -0.736611}
|
||||
<VertexRef> { 57 58 59 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.414416 -0.414415 -0.810259}
|
||||
<VertexRef> { 60 61 62 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.000000 -0.834922 -0.550369}
|
||||
<VertexRef> { 63 64 65 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.368599 -0.368599 -0.853387}
|
||||
<VertexRef> { 66 67 68 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.590159 0.000000 -0.807287}
|
||||
<VertexRef> { 69 70 71 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.652767 0.000000 -0.757558}
|
||||
<VertexRef> { 72 73 74 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.461646 -0.461646 -0.757474}
|
||||
<VertexRef> { 75 76 77 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.000000 -0.653103 -0.757269}
|
||||
<VertexRef> { 78 79 80 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.461982 -0.461982 -0.757064}
|
||||
<VertexRef> { 81 82 83 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.653439 0.000000 -0.756979}
|
||||
<VertexRef> { 84 85 86 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.461982 0.461982 -0.757064}
|
||||
<VertexRef> { 87 88 89 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {-0.000000 0.653103 -0.757269}
|
||||
<VertexRef> { 90 91 92 <Ref> { Circle.001 }}
|
||||
}
|
||||
<Polygon> {
|
||||
<TRef> { Texture.002 }
|
||||
<MRef> { Material.002 }
|
||||
<Normal> {0.461646 0.461646 -0.757474}
|
||||
<VertexRef> { 93 94 95 <Ref> { Circle.001 }}
|
||||
}
|
||||
}
|
||||
BIN
data/panda_example/BambooLaser/tex/bambooLaser.png
Normal file
|
After Width: | Height: | Size: 226 B |
BIN
data/panda_example/BambooLaser/tex/bambooLaserHit.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
data/panda_example/BambooLaser/tex/playerHit.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
data/panda_example/Environment/environment.blend
Normal file
540937
data/panda_example/Environment/environment.egg
Normal file
BIN
data/panda_example/Environment/tex/bricks.png
Normal file
|
After Width: | Height: | Size: 727 KiB |
BIN
data/panda_example/Environment/tex/bricksNormals.png
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
BIN
data/panda_example/Environment/tex/mountains.png
Normal file
|
After Width: | Height: | Size: 323 KiB |
BIN
data/panda_example/Environment/tex/sand.png
Normal file
|
After Width: | Height: | Size: 753 KiB |
BIN
data/panda_example/Environment/tex/sandNormals.png
Normal file
|
After Width: | Height: | Size: 3.1 MiB |
BIN
data/panda_example/Environment/tex/sky.png
Normal file
|
After Width: | Height: | Size: 247 B |
BIN
data/panda_example/Environment/tex/stoneColour.png
Normal file
|
After Width: | Height: | Size: 698 KiB |
BIN
data/panda_example/Environment/tex/stoneNormals.png
Normal file
|
After Width: | Height: | Size: 5.0 MiB |
BIN
data/panda_example/Environment/tex/tileColour.png
Normal file
|
After Width: | Height: | Size: 726 KiB |
BIN
data/panda_example/Environment/tex/tileNormals.png
Normal file
|
After Width: | Height: | Size: 4.6 MiB |
2
data/panda_example/LICENSE.md
Normal file
@@ -0,0 +1,2 @@
|
||||
All models, textures, and images included in this repository are copyright Ian Eborn, and licensed under a Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) License:
|
||||
https://creativecommons.org/licenses/by-nc/4.0/
|
||||
3
data/panda_example/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
This repository contains sample models, as well as some UI assets. As long as you hold to the license (see "LICENSE.md"), feel free to use them!
|
||||
|
||||
You should find both Blender (.blend) and Panda3D egg (.egg) files for each model.
|
||||
619
data/panda_example/SimpleEnemy/simpleEnemy-attack.egg
Normal file
@@ -0,0 +1,619 @@
|
||||
<CoordinateSystem> { Z-up }
|
||||
<Table> {
|
||||
<Bundle> Armature {
|
||||
<Table> "<skeleton>" {
|
||||
<Table> root {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_1 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.084805 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.340831 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.763034 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -1.332936 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -2.015448 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -2.759352 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -3.503247 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -4.185746 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -4.755677 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -5.178000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -5.434265 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -5.519432 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -5.254704 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -4.456736 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -3.157972 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -1.457730 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.469406 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 2.396515 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 4.096718 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 5.395522 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.193690 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.458771 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.448410 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.417163 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.364848 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.291377 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.196777 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.081213 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 5.944995 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 5.788614 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 5.612749 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 5.418283 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 5.206322 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 4.978201 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 4.735484 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 4.479957 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 4.213623 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 3.938665 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 3.657430 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 3.372380 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 3.086052 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 2.801008 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 2.519782 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 2.244840 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 1.978524 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 1.723020 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 1.480329 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 1.252236 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 1.040304 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.845867 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.670029 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.513675 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.377482 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.261938 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.167359 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.093901 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.041597 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.010359 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_2 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_3 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126769 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.126770 0.000000
|
||||
}
|
||||
}
|
||||
<Table> head {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.372468 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.237722 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.012210 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -79.696826 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -79.294296 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -78.809619 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -78.250363 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -77.626855 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -76.952176 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -76.241816 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -75.513130 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -74.784438 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -74.074085 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -73.399405 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -72.775898 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -72.216642 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -71.731965 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.329441 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.014051 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -70.788545 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.653799 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.609205 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.624921 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.672336 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -70.751717 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.863206 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.006763 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.182155 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.388898 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.626261 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -71.893226 -179.999978 0.000080 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -72.188461 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.510272 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.856665 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -73.225249 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -73.613320 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -74.017831 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -74.435470 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -74.862657 -179.999978 0.000080 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -75.295650 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -75.730604 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -76.163603 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -76.590798 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -77.008429 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -77.412941 -179.999978 0.000080 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -77.801011 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -78.169596 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -78.515982 -179.999978 0.000081 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -78.837800 -179.999978 0.000081 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -79.133035 -179.999978 0.000081 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -79.400000 -179.999978 0.000081 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -79.637369 -179.999978 0.000081 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -79.844112 -179.999978 0.000081 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.019498 -179.999978 0.000081 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.163055 -179.999978 0.000081 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.274544 -179.999978 0.000081 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.353924 -179.999978 0.000081 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.401333 -179.999978 0.000081 -0.000000 0.363178 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> sword_r {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -89.999996 126.548570 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.995257 0.000005 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 124.319934 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 121.542588 0.000006 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.769605 0.000007 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 113.224831 0.000007 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999989 108.254045 0.000010 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999989 103.283259 0.000013 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999982 98.738485 0.000021 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999968 94.965509 0.000034 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999921 92.188177 0.000073 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999668 90.512847 0.000328 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.004230 89.959534 -0.004237 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999914 92.020017 0.000079 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999982 98.444001 0.000018 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999989 109.564711 0.000008 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.170935 0.000005 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 143.731168 0.000002 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 162.334499 0.000001 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 178.040875 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -170.735345 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -164.241461 -0.000001 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -162.157119 0.000002 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -162.264954 0.000002 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -162.590536 0.000002 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -163.136924 0.000002 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -163.906891 0.000003 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -164.902773 0.000003 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -166.126006 0.000002 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -167.577011 0.000003 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -169.254560 0.000003 -0.000000 0.126769 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -171.155456 0.000003 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -173.274058 0.000003 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -175.601732 0.000003 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 -178.126566 0.000003 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 179.167063 0.000003 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 176.298603 0.000003 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 173.291380 0.000003 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 170.172319 0.000003 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 166.971460 0.000003 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 163.721301 0.000004 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 160.455747 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 157.209276 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 154.015629 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 150.907005 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 147.912992 0.000004 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 145.059940 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 142.370594 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 139.863833 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 137.554600 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 135.454276 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 133.570947 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 131.909804 0.000006 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.473675 0.000006 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 129.263434 0.000006 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 128.278493 0.000006 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 127.517118 0.000006 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.976973 0.000006 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.655148 0.000006 -0.000000 0.126770 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> sword_l {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.894074 0.000006 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.357290 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -123.732319 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -121.039340 0.000007 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.382415 0.000009 0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -112.979026 0.000010 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000016 -108.163907 0.000013 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000016 -103.348788 0.000018 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000030 -98.945392 0.000031 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000050 -95.288468 0.000050 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000105 -92.595502 0.000098 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000276 -90.970525 0.000296 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000617 -90.433747 0.000558 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000105 -92.490809 0.000102 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000030 -98.902772 0.000031 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -109.998223 0.000013 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.561171 0.000007 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -144.062104 0.000003 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -162.603363 0.000001 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -178.260028 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 170.548020 -0.000001 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 164.070542 -0.000001 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 161.991132 -0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 162.100005 -0.000005 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 162.428701 -0.000005 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 162.980376 -0.000005 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 163.757883 -0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 164.763615 -0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 165.999142 -0.000005 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 167.464955 -0.000004 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 169.159935 -0.000004 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 171.080980 -0.000004 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 173.222436 -0.000004 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 175.575805 -0.000004 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 178.129052 -0.000003 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -179.133527 -0.000003 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -176.231571 -0.000003 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -173.188681 -0.000002 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -170.032109 -0.000002 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -166.792373 -0.000002 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -163.502380 -0.000001 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -160.196677 -0.000001 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -156.910223 -0.000001 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -153.677371 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -150.530730 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -147.500394 0.000001 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -144.613136 0.000001 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -141.891921 0.000001 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -139.355872 0.000002 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -137.020056 0.000002 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -134.895936 0.000003 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -132.991611 0.000003 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -131.312217 0.000003 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.860529 0.000003 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -128.637351 0.000004 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -127.642001 0.000004 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.872676 0.000004 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.326917 0.000004 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.001745 0.000004 0.000000 0.855298 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> axle_l {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> axle_r {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
1087
data/panda_example/SimpleEnemy/simpleEnemy-die.egg
Normal file
781
data/panda_example/SimpleEnemy/simpleEnemy-spawn.egg
Normal file
@@ -0,0 +1,781 @@
|
||||
<CoordinateSystem> { Z-up }
|
||||
<Table> {
|
||||
<Bundle> Armature {
|
||||
<Table> "<skeleton>" {
|
||||
<Table> root {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -1.870714
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -1.861861
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -1.835118
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -1.790345
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -1.727616
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -1.647270
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -1.549966
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -1.436732
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -1.309000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -1.168630
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -1.017896
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -0.859451
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -0.696247
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -0.531435
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -0.368231
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -0.209785
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 -0.059051
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.081319
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.209050
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.322284
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.419588
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.499934
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.562664
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.607436
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.634179
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.643032
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.640574
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.633148
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.620718
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.603311
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.581039
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.554111
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.522851
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.487706
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.449252
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.408186
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.365313
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.321516
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.277719
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.234846
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.193781
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.155326
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.120181
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.088921
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.061994
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.039721
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.022315
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.009884
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.002458
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_1 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.114879 1.000000 0.114879 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.116562 1.000000 0.116562 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.121639 1.000000 0.121639 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.130140 1.000000 0.130140 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.142075 1.000000 0.142075 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.157433 1.000000 0.157433 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.176174 1.000000 0.176174 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.198228 1.000000 0.198228 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.223488 1.000000 0.223488 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.251812 1.000000 0.251812 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.283011 1.000000 0.283011 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.316858 1.000000 0.316858 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.353079 1.000000 0.353079 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.391358 1.000000 0.391358 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.431339 1.000000 0.431339 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.472629 1.000000 0.472629 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.514809 1.000000 0.514809 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.557440 1.000000 0.557440 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.600070 1.000000 0.600070 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.642250 1.000000 0.642250 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.683541 1.000000 0.683541 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.723521 1.000000 0.723521 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.761800 1.000000 0.761800 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.798021 1.000000 0.798021 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.831868 1.000000 0.831868 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.863068 1.000000 0.863068 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.891391 1.000000 0.891391 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.916651 1.000000 0.916651 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.938705 1.000000 0.938705 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.957446 1.000000 0.957446 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.972804 1.000000 0.972804 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.984740 1.000000 0.984740 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.993241 1.000000 0.993241 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
0.998317 1.000000 0.998317 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_2 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_3 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126769 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
}
|
||||
}
|
||||
<Table> head {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081837 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081837 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081837 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081837 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081837 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081837 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081837 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081837 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081837 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081837 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081839 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 7.081838 -179.999964 -0.000044 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 6.859308 -179.999964 -0.000043 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 6.185377 -179.999964 -0.000042 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 5.049864 -179.999964 -0.000041 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 3.442639 -179.999964 -0.000038 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 1.355030 -179.999964 -0.000035 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -1.218123 -179.999950 -0.000031 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -4.276078 -179.999950 -0.000027 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -7.809205 -179.999950 -0.000021 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -11.795933 -179.999950 -0.000015 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -16.199822 -179.999950 -0.000008 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -20.967549 -179.999950 0.000000 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -26.028201 -179.999950 0.000008 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -31.294731 -179.999950 0.000017 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -36.667618 -179.999950 0.000026 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -42.040494 -179.999950 0.000034 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -47.307024 -179.999964 0.000042 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -52.367678 -179.999964 0.000050 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -57.135383 -179.999964 0.000056 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -61.539294 -179.999964 0.000062 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -65.526021 -179.999978 0.000067 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -69.059134 -179.999978 0.000071 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.117099 -179.999978 0.000075 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -74.690256 -179.999991 0.000077 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -76.777863 -179.999991 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -78.385102 -179.999991 0.000081 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -79.520607 -179.999991 0.000082 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.194549 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> sword_r {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126769 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999681 90.644786 0.000322 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999798 91.028854 0.000202 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999907 92.193128 0.000096 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999948 94.140764 0.000051 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999968 96.844535 0.000031 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999982 100.232685 0.000021 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999989 104.177378 0.000015 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999989 108.492234 0.000012 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999989 112.944568 0.000010 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.282257 0.000008 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 121.267523 0.000007 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 124.705485 0.000006 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 127.458898 0.000006 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 129.447685 0.000006 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.638679 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 131.031906 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.972552 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.793341 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.497007 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.094053 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 129.604711 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 129.059156 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 128.495065 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 127.952707 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 127.468897 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 127.072364 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.781807 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.606545 0.000005 0.000000 0.126770 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> sword_l {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.001717 -90.134994 0.001718 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000446 -90.518537 0.000446 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000139 -91.681199 0.000137 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000064 -93.626095 0.000063 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000037 -96.325987 0.000035 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000023 -99.709157 0.000022 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000016 -103.647909 0.000015 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -107.956133 0.000011 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -112.401507 0.000009 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -116.732332 0.000007 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -120.711272 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -124.143797 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.892839 0.000004 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -128.878471 0.000004 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -130.067620 0.000003 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -130.460233 0.000004 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -130.399786 0.000004 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -130.217270 0.000004 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.915485 0.000004 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.505127 0.000004 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.006769 0.000004 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -128.451147 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -127.876632 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -127.324234 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.831463 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.427580 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.131642 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.953128 0.000005 0.000000 0.855298 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> axle_l {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.225253 0.225253 0.225253 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.229705 0.229705 0.229705 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.237160 0.237160 0.237160 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.247627 0.247627 0.247627 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.261095 0.261095 0.261095 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.277531 0.277531 0.277531 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.296871 0.296871 0.296871 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.319024 0.319024 0.319024 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.343862 0.343862 0.343862 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.371223 0.371223 0.371223 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.400906 0.400906 0.400906 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.432671 0.432671 0.432671 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.466240 0.466240 0.466240 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.501302 0.501302 0.501302 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.537512 0.537512 0.537512 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.574503 0.574503 0.574503 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.611889 0.611888 0.611889 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.649274 0.649274 0.649274 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.686265 0.686265 0.686265 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.722475 0.722475 0.722475 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.757537 0.757537 0.757537 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.791106 0.791106 0.791106 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.822871 0.822871 0.822871 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.852554 0.852554 0.852554 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.879915 0.879915 0.879915 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.904753 0.904753 0.904753 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.926906 0.926906 0.926906 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.946246 0.946246 0.946246 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.962682 0.962682 0.962682 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.976150 0.976150 0.976150 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.986617 0.986617 0.986617 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.994072 0.994072 0.994072 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.998524 0.998524 0.998524 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> axle_r {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.223777 0.223777 0.223777 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.225253 0.225253 0.225253 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.229705 0.229705 0.229705 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.237160 0.237160 0.237160 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.247627 0.247627 0.247627 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.261095 0.261095 0.261095 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.277531 0.277531 0.277531 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.296871 0.296871 0.296871 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.319024 0.319024 0.319024 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.343862 0.343862 0.343862 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.371223 0.371223 0.371223 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.400906 0.400906 0.400906 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.432671 0.432671 0.432671 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.466240 0.466240 0.466240 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.501302 0.501302 0.501302 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.537512 0.537512 0.537512 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.574503 0.574503 0.574503 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.611889 0.611889 0.611889 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.649274 0.649274 0.649274 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.686265 0.686265 0.686265 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.722475 0.722475 0.722475 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.757537 0.757537 0.757537 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.791106 0.791106 0.791106 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.822871 0.822871 0.822871 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.852554 0.852554 0.852554 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.879915 0.879915 0.879915 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.904753 0.904753 0.904753 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.926906 0.926906 0.926906 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.946246 0.946246 0.946246 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.962682 0.962682 0.962682 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.976150 0.976150 0.976150 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.986617 0.986617 0.986617 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.994072 0.994072 0.994072 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
0.998524 0.998524 0.998524 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
619
data/panda_example/SimpleEnemy/simpleEnemy-stand.egg
Normal file
@@ -0,0 +1,619 @@
|
||||
<CoordinateSystem> { Z-up }
|
||||
<Table> {
|
||||
<Bundle> Armature {
|
||||
<Table> "<skeleton>" {
|
||||
<Table> root {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_1 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.032834 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.132102 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.297547 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.526443 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.812894 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -1.147318 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -1.516398 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -1.903698 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -2.290999 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -2.660078 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -2.994502 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -3.280953 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -3.509852 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -3.675295 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -3.774564 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -3.807396 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -3.781409 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -3.702886 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -3.571455 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -3.387513 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -3.152426 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -2.868729 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -2.540296 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -2.172452 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -1.771998 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -1.347096 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -0.907028 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -0.461811 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000001 -0.021718 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000001 0.403232 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000001 0.803753 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000001 1.171673 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000001 1.500185 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000001 1.783956 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000001 2.019107 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000001 2.203092 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000001 2.334549 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000001 2.413074 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 2.439041 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 2.425569 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 2.384912 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 2.316952 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 2.222138 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 2.101647 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 1.957521 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 1.792778 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 1.611435 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 1.418425 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 1.219391 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 1.020359 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.827361 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.646037 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.481318 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.337221 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.216762 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.121984 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.054060 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.013439 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_2 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 -0.000000 -0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_3 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 -0.000000 -0.000000 0.126769 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126769 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
}
|
||||
}
|
||||
<Table> head {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -80.417056 -179.999991 0.000083 -0.000000 0.363178 -0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> sword_r {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -89.999996 126.548570 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.515949 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.417349 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.252973 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.025596 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.741023 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.408803 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.042145 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 124.657414 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 124.272642 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 123.905997 0.000006 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 123.573777 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 123.289204 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 123.061813 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 122.897465 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 122.798851 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 122.766230 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 122.801856 0.000005 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 122.909500 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 123.089694 0.000005 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 123.341892 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 123.664222 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 124.053242 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 124.503639 0.000005 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.008117 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.557359 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.140152 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.743777 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 127.354451 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 127.958089 0.000004 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 128.540936 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 129.090234 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 129.594794 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.045272 0.000004 -0.000000 0.126769 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.434360 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.756773 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 131.009012 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 131.189260 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 131.296931 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 131.332571 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 131.306220 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 131.226539 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 131.093296 0.000004 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.907378 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.671054 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.388380 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 130.065243 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 129.709500 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 129.330875 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 128.940420 0.000005 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 128.549966 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 128.171355 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 127.815666 0.000005 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 127.492571 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 127.209924 0.000005 -0.000000 0.126769 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.973681 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.787791 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.654588 0.000005 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.574921 0.000005 0.000000 0.126770 -0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> sword_l {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.894074 0.000006 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.930534 0.000006 0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.040787 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.224546 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.478766 0.000006 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.796929 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -127.168369 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -127.578303 0.000006 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -128.008482 0.000005 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -128.438675 0.000005 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -128.848609 0.000005 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.220048 0.000005 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.538199 0.000005 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.792418 0.000005 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.976178 0.000005 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -130.086431 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -130.122890 0.000005 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -130.102167 0.000005 0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -130.039562 0.000005 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.934732 0.000005 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.788047 0.000005 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.600572 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.374356 0.000005 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -129.112473 0.000005 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -128.819171 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -128.499887 0.000005 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -128.161123 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -127.810270 0.000005 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -127.455332 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -127.104466 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.765661 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.446336 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -126.152993 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.891055 0.000006 -0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.664771 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.477241 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.330515 0.000006 -0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.225672 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.163025 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.142289 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.146442 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.158968 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.179910 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.209129 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.246272 0.000006 -0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.290695 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.341484 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.397369 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.456874 0.000006 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.518222 0.000006 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.579571 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.639062 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.694947 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.745722 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.790119 0.000006 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.827261 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.856467 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.877408 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.889935 0.000006 -0.000000 0.855298 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> axle_l {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> axle_r {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
799
data/panda_example/SimpleEnemy/simpleEnemy-walk.egg
Normal file
@@ -0,0 +1,799 @@
|
||||
<CoordinateSystem> { Z-up }
|
||||
<Table> {
|
||||
<Bundle> Armature {
|
||||
<Table> "<skeleton>" {
|
||||
<Table> root {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 -179.999937 0.000000 0.000000 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_1 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 6.809154 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.812099 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.820970 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.835825 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.856688 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.883559 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.916399 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.955138 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.999660 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.049799 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.105343 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.166023 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.231511 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.301422 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.375312 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.452686 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.532987 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.615615 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.699939 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.785290 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.870985 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.956336 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.040660 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.123288 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.203591 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.280961 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.354854 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.424765 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.490253 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.550932 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.606475 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.656614 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.701136 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.739875 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.772716 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.799587 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.820450 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.835304 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.844178 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.847121 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.844322 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.835891 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.821772 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.801942 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.776402 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.745180 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.708338 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.665974 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.618238 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.565311 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.507434 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.444895 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.378035 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.307247 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.232979 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.155723 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 8.076023 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.994451 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.911611 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.828138 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.744664 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.661825 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.580252 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.500551 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.423295 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.349029 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.278240 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.211380 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.148841 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.090964 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 7.038037 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.990299 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.947938 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.911096 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.879873 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.854331 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.834502 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.820386 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 6.811952 -0.000000 -0.000000 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_2 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.855298 0.000000
|
||||
}
|
||||
}
|
||||
<Table> body_3 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 0.126769 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126769 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -0.000001 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 0.000000 -0.000000 -0.000000 0.000000 0.126770 0.000000
|
||||
}
|
||||
}
|
||||
<Table> head {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -72.412067 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.405777 -179.999978 0.000080 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -72.386809 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.355049 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -72.310441 -179.999978 0.000080 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -72.252992 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.182778 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.099955 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.004763 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -71.897563 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -71.778799 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.649053 -179.999978 0.000080 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -71.509021 -179.999978 0.000080 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -71.359522 -179.999978 0.000080 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -71.201519 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.036064 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.864346 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.687649 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -70.507319 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.324789 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.141535 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -69.959005 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -69.778681 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -69.601977 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -69.430266 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -69.264805 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -69.106802 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.957310 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.817277 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -68.687531 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.568768 -179.999978 0.000080 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.461561 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -68.366369 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -68.283546 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.213331 -179.999978 0.000080 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -68.155883 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.111282 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.079521 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.060547 -179.999978 0.000080 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.054256 -179.999978 0.000078 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.060240 -179.999978 0.000078 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -68.078264 -179.999978 0.000078 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.108447 -179.999978 0.000078 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -68.150849 -179.999978 0.000078 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.205449 -179.999978 0.000078 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.272208 -179.999978 0.000078 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.350980 -179.999978 0.000078 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -68.441549 -179.999978 0.000078 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.543619 -179.999978 0.000078 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -68.656781 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.780538 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -68.914266 -179.999978 0.000079 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -69.057235 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -69.208599 -179.999978 0.000079 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -69.367415 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -69.532623 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -69.703064 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -69.877500 -179.999978 0.000079 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.054648 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.233162 -179.999978 0.000079 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -70.411676 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.588823 -179.999978 0.000079 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -70.763273 -179.999978 0.000079 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -70.933714 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.098909 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.257724 -179.999978 0.000079 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -71.409095 -179.999978 0.000079 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -71.552058 -179.999978 0.000079 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.685786 -179.999978 0.000079 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.809542 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -71.922712 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.024775 -179.999978 0.000079 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.115350 -179.999978 0.000079 0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.194123 -179.999978 0.000079 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -72.260874 -179.999978 0.000079 -0.000000 0.363178 0.000000
|
||||
1.000000 1.000000 1.000000 -72.315482 -179.999978 0.000079 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -72.357877 -179.999978 0.000079 0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -72.388059 -179.999978 0.000079 -0.000000 0.363178 -0.000000
|
||||
1.000000 1.000000 1.000000 -72.406084 -179.999978 0.000079 -0.000000 0.363178 -0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> sword_r {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -89.999996 126.548570 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.534445 0.000004 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.491852 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.420545 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.320387 0.000005 0.000000 0.126769 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.191379 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.033710 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.847683 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.633871 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.393039 0.000005 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.126224 0.000006 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 124.834684 0.000006 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 124.520004 0.000006 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 124.184027 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 123.828871 0.000005 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 123.456953 0.000005 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 123.070911 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 122.673626 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 122.268186 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 121.857787 0.000005 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 121.445736 0.000004 0.000000 0.126769 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 121.035337 0.000006 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 120.629897 0.000006 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 120.232626 0.000006 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 119.846597 0.000006 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 119.474666 0.000005 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 119.119510 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 118.783533 0.000006 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 118.468839 0.000006 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 118.177313 0.000002 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.910498 0.000002 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.669666 0.000004 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.455853 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.269826 0.000006 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.112145 0.000004 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 116.983150 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 116.882992 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 116.811685 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 116.769092 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 116.754967 0.000002 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 116.768395 0.000002 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 116.808884 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 116.876640 0.000002 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 116.971825 0.000002 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.094441 0.000002 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.244364 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.421279 0.000002 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.624709 0.000002 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 117.854013 0.000002 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 118.108232 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 118.386303 0.000000 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 118.686804 0.000002 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 119.008096 0.000002 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 119.348321 0.000002 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 119.705308 0.000003 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 120.076693 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 120.459880 0.000003 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 120.852083 0.000004 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 121.250392 0.000003 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 121.651762 0.000004 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 122.053131 0.000003 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 122.451454 0.000004 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 122.843657 0.000003 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 123.226831 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 123.598229 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 123.955202 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 124.295427 0.000003 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 124.616733 0.000003 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 124.917248 0.000004 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.195305 0.000004 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.449538 0.000003 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.678814 0.000003 0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 125.882258 0.000003 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.059173 0.000003 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.209082 0.000003 -0.000000 0.126770 -0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.331698 0.000003 0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.426883 0.000003 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.494666 0.000002 -0.000000 0.126770 0.000000
|
||||
1.000000 1.000000 1.000000 -89.999996 126.535142 0.000003 0.000000 0.126770 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> sword_l {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.894074 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.881397 0.000006 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.843135 0.000005 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.779108 0.000005 -0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.689168 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.573328 0.000005 -0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.431752 0.000005 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.264727 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.072744 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -124.856514 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -124.616952 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -124.355205 0.000007 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -124.072695 0.000007 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -123.771060 0.000007 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -123.452227 0.000007 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -123.118354 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -122.771817 0.000007 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -122.415186 0.000008 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -122.051232 0.000008 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -121.682853 0.000007 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -121.312957 0.000007 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -120.944550 0.000008 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -120.580610 0.000008 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -120.223979 0.000009 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -119.877442 0.000007 0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -119.543555 0.000010 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -119.224722 0.000009 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -118.923101 0.000008 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -118.640577 0.000008 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -118.378844 0.000009 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -118.139296 0.000008 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.923052 0.000010 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.731069 0.000008 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.564057 0.000008 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.422468 0.000008 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.306641 0.000008 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.216701 0.000008 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.152661 0.000008 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.114412 0.000012 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.101736 0.000012 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.113784 0.000010 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.150148 0.000010 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.210991 0.000008 0.000000 0.855297 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.296464 0.000008 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.406567 0.000008 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.541176 0.000010 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.700033 0.000008 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -117.882699 0.000008 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -118.088561 0.000009 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -118.316826 0.000009 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -118.566470 0.000008 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -118.836248 0.000008 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -119.124715 0.000009 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -119.430147 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -119.750619 0.000009 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -120.084001 0.000007 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -120.427983 0.000008 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -120.780052 0.000009 0.000000 0.855297 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -121.137585 0.000009 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -121.497891 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -121.858197 0.000008 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -122.215730 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -122.567813 0.000008 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -122.911781 0.000007 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -123.245176 0.000007 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -123.565649 0.000007 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -123.871081 0.000007 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -124.159534 0.000006 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -124.429326 0.000006 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -124.678970 0.000006 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -124.907235 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.113097 0.000006 0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.295777 0.000006 0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.454620 0.000005 -0.000000 0.855298 -0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.589229 0.000005 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.699332 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.784805 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.845662 0.000006 -0.000000 0.855298 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000009 -125.882012 0.000005 -0.000000 0.855298 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> axle_l {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.001151 -89.637306 -90.001150 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000284 -88.528466 -90.000283 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000124 -86.645287 -90.000125 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000069 -83.967395 -90.000064 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000044 -80.488691 -90.000043 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000031 -76.225259 -90.000030 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000023 -71.223560 -90.000023 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000018 -65.566722 -90.000016 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000014 -59.375941 -90.000009 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000012 -52.804937 -90.000009 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000010 -46.027101 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000009 -39.217795 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000009 -32.536395 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 -26.112812 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 -20.040772 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 -14.378006 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000007 -9.151191 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000007 -4.363113 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000007 0.000012 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000007 4.200060 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000007 8.484035 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000007 12.850907 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 17.298161 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 21.821302 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 26.413375 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000009 31.064780 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000009 35.763062 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000010 40.493115 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000010 45.237702 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000011 49.978386 -89.999989 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000013 54.696582 -89.999989 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000014 59.374630 -89.999989 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000017 63.996782 -89.999982 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000020 68.549752 -89.999982 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000025 73.023082 -89.999975 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000033 77.409006 -89.999968 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000050 81.702306 -89.999948 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000102 85.899792 -89.999900 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000102 94.102248 -90.000098 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000050 98.306380 -90.000050 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000033 102.611612 -90.000030 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000025 107.015247 -90.000023 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000020 111.512134 -90.000016 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000017 116.094228 -90.000016 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000014 120.750149 -90.000009 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000013 125.465329 -90.000009 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000011 130.221955 -90.000009 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000010 135.000000 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000010 139.778046 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000009 144.534671 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 149.249851 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 153.905800 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 158.487887 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 162.984761 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000007 167.388402 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000007 171.693648 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000007 175.897780 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 179.999991 0.000003 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000007 -175.771927 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000007 -171.177928 -90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 -166.205687 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 -160.855654 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 -155.146381 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 -149.120214 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000009 -142.847246 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000010 -136.426800 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000011 -129.984101 -89.999989 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000013 -123.661996 -89.999989 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000016 -117.608481 -89.999989 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000019 -111.962981 -89.999982 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000025 -106.844151 -89.999975 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000034 -102.342448 -89.999968 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000049 -98.517890 -89.999955 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000077 -95.402457 -89.999921 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000139 -93.005286 -89.999859 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000316 -91.318967 -89.999681 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.001283 -90.325290 -89.998718 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> axle_r {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.001151 89.637313 89.998848 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000284 88.528472 89.999716 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000124 86.645294 89.999873 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000069 83.967402 89.999934 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000044 80.488698 89.999955 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000031 76.225266 89.999968 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000023 71.223573 89.999975 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000018 65.566736 89.999982 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000014 59.375948 89.999989 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000012 52.804944 89.999989 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000010 46.027111 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000009 39.217806 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000009 32.536405 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 26.112821 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 20.040779 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 14.378011 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000007 9.151198 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000007 4.363121 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000007 -0.000005 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000007 -4.200053 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000007 -8.484028 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000007 -12.850900 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 -17.298152 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 -21.821293 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000008 -26.413368 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000009 -31.064776 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000009 -35.763051 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000010 -40.493108 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000010 -45.237692 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000011 -49.978379 90.000009 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000013 -54.696575 90.000009 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000014 -59.374623 90.000009 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000017 -63.996769 90.000016 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000020 -68.549746 90.000016 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000025 -73.023069 90.000023 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000033 -77.409000 90.000030 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000050 -81.702299 90.000050 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -0.000102 -85.899785 90.000098 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -89.999989 0.000000 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000102 -94.102241 89.999900 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000050 -98.306373 89.999948 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000033 -102.611605 89.999968 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000025 -107.015240 89.999975 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000020 -111.512120 89.999982 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000017 -116.094201 89.999982 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000014 -120.750149 89.999989 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000013 -125.465316 89.999989 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000011 -130.221955 89.999989 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000010 -134.999987 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000010 -139.778032 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000009 -144.534671 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 -149.249838 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 -153.905786 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 -158.487873 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 -162.984747 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000007 -167.388389 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000007 -171.693634 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000007 -175.897766 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 -179.999991 -0.000011 -89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000007 175.771927 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000007 171.177941 89.999996 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 166.205700 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 160.855654 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 155.146381 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000008 149.120214 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000009 142.847259 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000010 136.426813 90.000003 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000011 129.984114 90.000009 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000013 123.661996 90.000009 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000016 117.608508 90.000009 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000019 111.962988 90.000016 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000025 106.844157 90.000023 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000034 102.342455 90.000030 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000049 98.517897 90.000043 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000077 95.402464 90.000078 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000139 93.005299 90.000139 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.000316 91.318980 90.000317 0.000000 0.312587 0.000000
|
||||
1.000000 1.000000 1.000000 0.001283 90.325297 90.001280 0.000000 0.312587 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
data/panda_example/SimpleEnemy/simpleEnemy.blend
Normal file
68129
data/panda_example/SimpleEnemy/simpleEnemy.egg
Normal file
BIN
data/panda_example/SimpleEnemy/tex/simpleEnemy.png
Normal file
|
After Width: | Height: | Size: 526 KiB |
BIN
data/panda_example/SimpleEnemy/tex/simpleEnemyNormals.png
Normal file
|
After Width: | Height: | Size: 1.2 MiB |
BIN
data/panda_example/SlidingTrap/tex/brass.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
data/panda_example/SlidingTrap/tex/brassNormals.png
Normal file
|
After Width: | Height: | Size: 219 KiB |
127
data/panda_example/SlidingTrap/trap-stand.egg
Normal file
@@ -0,0 +1,127 @@
|
||||
<CoordinateSystem> { Z-up }
|
||||
<Table> {
|
||||
<Bundle> trapArmature {
|
||||
<Table> "<skeleton>" {
|
||||
<Table> root {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
}
|
||||
}
|
||||
<Table> spikes_2 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> spikes_4 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> spikes_3 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> spikes_1 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 0.700000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
127
data/panda_example/SlidingTrap/trap-walk.egg
Normal file
@@ -0,0 +1,127 @@
|
||||
<CoordinateSystem> { Z-up }
|
||||
<Table> {
|
||||
<Bundle> trapArmature {
|
||||
<Table> "<skeleton>" {
|
||||
<Table> root {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 0.000000 0.000000 0.000000 0.000000
|
||||
}
|
||||
}
|
||||
<Table> spikes_2 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> spikes_4 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 89.999996 0.000000 0.000000 0.390516 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> spikes_3 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 -90.000003 -0.000000 0.000000 0.000000 0.390516 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
<Table> spikes_1 {
|
||||
<Xfm$Anim> xform {
|
||||
<Scalar> order { sprht }
|
||||
<Scalar> fps { 60 }
|
||||
<Scalar> contents { ijkprhxyz }
|
||||
<V> {
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
1.000000 1.000000 1.000000 90.000003 -0.000000 179.999991 0.000000 0.390516 0.000000
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
data/panda_example/SlidingTrap/trap.blend
Normal file
10051
data/panda_example/SlidingTrap/trap.egg
Normal file
BIN
data/panda_example/UI/UIButton.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
data/panda_example/UI/UIButtonDisabled.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
data/panda_example/UI/UIButtonHighlighted.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
data/panda_example/UI/UIButtonPressed.png
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
data/panda_example/UI/health.png
Normal file
|
After Width: | Height: | Size: 399 B |
BIN
data/panda_example/UI/stoneFrame.png
Normal file
|
After Width: | Height: | Size: 734 KiB |