Initial commit

This commit is contained in:
Eagle517
2025-02-17 23:17:30 -06:00
commit 7cad314c94
4726 changed files with 1145203 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
// The master server is declared with the server defaults, which is
// loaded on both clients & dedicated servers. If the server mod
// is not loaded on a client, then the master must be defined.
// $pref::Master[0] = "2:master.garagegames.com:28002";
$pref::Player::Name = "Fresh Meat";
$pref::Player::defaultFov = 90;
$pref::Player::zoomSpeed = 0;
$pref::Net::LagThreshold = 400;
$pref::Net::Port = 28000;
$pref::shadows = "2";
$pref::HudMessageLogSize = 40;
$pref::ChatHudLength = 1;
$pref::Input::LinkMouseSensitivity = 1;
$pref::Input::MouseEnabled = 0;
$pref::Input::JoystickEnabled = 0;
$pref::Input::KeyboardTurnSpeed = 0.1;
$pref::sceneLighting::cacheSize = 20000;
$pref::sceneLighting::purgeMethod = "lastCreated";
$pref::sceneLighting::cacheLighting = 1;
$pref::sceneLighting::terrainGenerateLevel = 1;
$pref::ts::detailAdjust = 0.45;
$pref::Terrain::DynamicLights = 1;
$pref::Interior::TexturedFog = 0;
$pref::Video::displayDevice = "OpenGL";
$pref::Video::allowOpenGL = 1;
$pref::Video::allowD3D = 1;
$pref::Video::preferOpenGL = 1;
$pref::Video::appliedPref = 0;
$pref::Video::disableVerticalSync = 1;
$pref::Video::monitorNum = 0;
$pref::Video::windowedRes = "800 600";
$pref::Video::screenShotFormat = "PNG";
$pref::OpenGL::force16BitTexture = "0";
$pref::OpenGL::forcePalettedTexture = "0";
$pref::OpenGL::maxHardwareLights = 3;
$pref::VisibleDistanceMod = 1.0;
$pref::Audio::driver = "OpenAL";
$pref::Audio::forceMaxDistanceUpdate = 0;
$pref::Audio::environmentEnabled = 0;
$pref::Audio::masterVolume = 0.8;
$pref::Audio::channelVolume1 = 0.8;
$pref::Audio::channelVolume2 = 0.8;
$pref::Audio::channelVolume3 = 0.8;
$pref::Audio::channelVolume4 = 0.8;
$pref::Audio::channelVolume5 = 0.8;
$pref::Audio::channelVolume6 = 0.8;
$pref::Audio::channelVolume7 = 0.8;
$pref::Audio::channelVolume8 = 0.8;

View File

@@ -0,0 +1,136 @@
//-----------------------------------------------------------------------------
// Variables used by client scripts & code. The ones marked with (c)
// are accessed from code. Variables preceeded by Pref:: are client
// preferences and stored automatically in the ~/client/prefs.cs file
// in between sessions.
//
// (c) Client::MissionFile Mission file name
// ( ) Client::Password Password for server join
// (?) Pref::Player::CurrentFOV
// (?) Pref::Player::DefaultFov
// ( ) Pref::Input::KeyboardTurnSpeed
// (c) pref::Master[n] List of master servers
// (c) pref::Net::RegionMask
// (c) pref::Client::ServerFavoriteCount
// (c) pref::Client::ServerFavorite[FavoriteCount]
// .. Many more prefs... need to finish this off
// Moves, not finished with this either...
// (c) firstPerson
// $mv*Action...
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
function initClient()
{
echo("\n--------- Initializing MOD: FPS Starter Kit: Client ---------");
// Make sure this variable reflects the correct state.
$Server::Dedicated = false;
// Game information used to query the master server
$Client::GameTypeQuery = "FPS Starter Kit";
$Client::MissionTypeQuery = "Any";
//
exec("./ui/customProfiles.cs"); // override the base profiles if necessary
// The common module provides basic client functionality
initBaseClient();
// InitCanvas starts up the graphics system.
// The canvas needs to be constructed before the gui scripts are
// run because many of the controls assume the canvas exists at
// load time.
initCanvas("Torque Game Engine", true);
/// Load client-side Audio Profiles/Descriptions
exec("./scripts/audioProfiles.cs");
// Load up the Game GUIs
exec("./ui/defaultGameProfiles.cs");
exec("./ui/PlayGui.gui");
exec("./ui/ChatHud.gui");
exec("./ui/playerList.gui");
// Load up the shell GUIs
exec("./ui/mainMenuGui.gui");
exec("./ui/QuitGui.gui");
exec("./ui/aboutDlg.gui");
exec("./ui/startMissionGui.gui");
exec("./ui/joinServerGui.gui");
exec("./ui/loadingGui.gui");
exec("./ui/endGameGui.gui");
exec("./ui/optionsDlg.gui");
exec("./ui/remapDlg.gui");
exec("./ui/StartupGui.gui");
// Client scripts
exec("./scripts/client.cs");
exec("./scripts/game.cs");
exec("./scripts/missionDownload.cs");
exec("./scripts/serverConnection.cs");
exec("./scripts/playerList.cs");
exec("./scripts/loadingGui.cs");
exec("./scripts/optionsDlg.cs");
exec("./scripts/chatHud.cs");
exec("./scripts/messageHud.cs");
exec("./scripts/playGui.cs");
exec("./scripts/centerPrint.cs");
// Default player key bindings
exec("./scripts/default.bind.cs");
exec("./config.cs");
// Really shouldn't be starting the networking unless we are
// going to connect to a remote server, or host a multi-player
// game.
setNetPort(0);
// Copy saved script prefs into C++ code.
setShadowDetailLevel( $pref::shadows );
setDefaultFov( $pref::Player::defaultFov );
setZoomSpeed( $pref::Player::zoomSpeed );
// Start up the main menu... this is separated out into a
// method for easier mod override.
if ($JoinGameAddress !$= "") {
// If we are instantly connecting to an address, load the
// main menu then attempt the connect.
loadMainMenu();
connect($JoinGameAddress, "", $Pref::Player::Name);
}
else {
// Otherwise go to the splash screen.
Canvas.setCursor("DefaultCursor");
loadStartup();
}
}
//-----------------------------------------------------------------------------
function loadMainMenu()
{
// Startup the client with the Main menu...
Canvas.setContent( MainMenuGui );
// Make sure the audio initialized.
if($Audio::initFailed) {
MessageBoxOK("Audio Initialization Failed",
"The OpenAL audio system failed to initialize. " @
"You can get the most recent OpenAL drivers <a:www.garagegames.com/docs/torque/gstarted/openal.html>here</a>.");
}
Canvas.setCursor("DefaultCursor");
}

View File

@@ -0,0 +1,33 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
// Channel assignments (channel 0 is unused in-game).
$GuiAudioType = 1;
$SimAudioType = 2;
$MessageAudioType = 3;
new AudioDescription(AudioGui)
{
volume = 1.0;
isLooping= false;
is3D = false;
type = $GuiAudioType;
};
new AudioDescription(AudioMessage)
{
volume = 1.0;
isLooping= false;
is3D = false;
type = $MessageAudioType;
};
new AudioProfile(AudioButtonOver)
{
filename = "~/data/sound/buttonOver.wav";
description = "AudioGui";
preload = true;
};

View File

@@ -0,0 +1,78 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
$centerPrintActive = 0;
$bottomPrintActive = 0;
// Selectable window sizes
$CenterPrintSizes[1] = 20;
$CenterPrintSizes[2] = 36;
$CenterPrintSizes[3] = 56;
// time is specified in seconds
function clientCmdCenterPrint( %message, %time, %size )
{
// if centerprint already visible, reset text and time.
if ($centerPrintActive) {
if (centerPrintDlg.removePrint !$= "")
cancel(centerPrintDlg.removePrint);
}
else {
CenterPrintDlg.visible = 1;
$centerPrintActive = 1;
}
CenterPrintText.setText( "<just:center>" @ %message );
CenterPrintDlg.extent = firstWord(CenterPrintDlg.extent) @ " " @ $CenterPrintSizes[%size];
if (%time > 0)
centerPrintDlg.removePrint = schedule( ( %time * 1000 ), 0, "clientCmdClearCenterPrint" );
}
// time is specified in seconds
function clientCmdBottomPrint( %message, %time, %size )
{
// if bottomprint already visible, reset text and time.
if ($bottomPrintActive) {
if( bottomPrintDlg.removePrint !$= "")
cancel(bottomPrintDlg.removePrint);
}
else {
bottomPrintDlg.setVisible(true);
$bottomPrintActive = 1;
}
bottomPrintText.setText( "<just:center>" @ %message );
bottomPrintDlg.extent = firstWord(bottomPrintDlg.extent) @ " " @ $CenterPrintSizes[%size];
if (%time > 0)
bottomPrintDlg.removePrint = schedule( ( %time * 1000 ), 0, "clientCmdClearbottomPrint" );
}
function BottomPrintText::onResize(%this, %width, %height)
{
%this.position = "0 0";
}
function CenterPrintText::onResize(%this, %width, %height)
{
%this.position = "0 0";
}
//-------------------------------------------------------------------------------------------------------
function clientCmdClearCenterPrint()
{
$centerPrintActive = 0;
CenterPrintDlg.visible = 0;
CenterPrintDlg.removePrint = "";
}
function clientCmdClearBottomPrint()
{
$bottomPrintActive = 0;
BottomPrintDlg.visible = 0;
BottomPrintDlg.removePrint = "";
}

View File

@@ -0,0 +1,286 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Message Hud
//-----------------------------------------------------------------------------
// chat hud sizes
$outerChatLenY[1] = 72;
$outerChatLenY[2] = 140;
$outerChatLenY[3] = 200;
// Only play sound files that are <= 5000ms in length.
$MaxMessageWavLength = 5000;
// Helper function to play a sound file if the message indicates.
// Returns starting position of wave file indicator.
function playMessageSound(%message, %voice, %pitch)
{
// Search for wav tag marker.
%wavStart = strstr(%message, "~w");
if (%wavStart == -1) {
return -1;
}
%wav = getSubStr(%message, %wavStart + 2, 1000);
if (%voice !$= "") {
%wavFile = "~/data/sound/voice/" @ %voice @ "/" @ %wav;
}
else {
%wavFile = "~/data/sound/" @ %wav;
}
if (strstr(%wavFile, ".wav") != (strlen(%wavFile) - 4)) {
%wavFile = %wavFile @ ".wav";
}
// XXX This only expands to a single filepath, of course; it
// would be nice to support checking in each mod path if we
// have multiple mods active.
%wavFile = ExpandFilename(%wavFile);
if ((%pitch < 0.5) || (%pitch > 2.0)) {
%pitch = 1.0;
}
%wavLengthMS = alxGetWaveLen(%wavFile) * %pitch;
if (%wavLengthMS == 0) {
error("** WAV file \"" @ %wavFile @ "\" is nonexistent or sound is zero-length **");
}
else if (%wavLengthMS <= $MaxMessageWavLength) {
if ($ClientChatHandle[%sender] != 0) {
alxStop($ClientChatHandle[%sender]);
}
$ClientChatHandle[%sender] = alxCreateSource(AudioMessage, %wavFile);
if (%pitch != 1.0) {
alxSourcef($ClientChatHandle[%sender], "AL_PITCH", %pitch);
}
alxPlay($ClientChatHandle[%sender]);
}
else {
error("** WAV file \"" @ %wavFile @ "\" is too long **");
}
return %wavStart;
}
// All messages are stored in this HudMessageVector, the actual
// MainChatHud only displays the contents of this vector.
new MessageVector(HudMessageVector);
$LastHudTarget = 0;
//-----------------------------------------------------------------------------
function onChatMessage(%message, %voice, %pitch)
{
// XXX Client objects on the server must have voiceTag and voicePitch
// fields for values to be passed in for %voice and %pitch... in
// this example mod, they don't have those fields.
// Clients are not allowed to trigger general game sounds with their
// chat messages... a voice directory MUST be specified.
if (%voice $= "") {
%voice = "default";
}
// See if there's a sound at the end of the message, and play it.
if ((%wavStart = playMessageSound(%message, %voice, %pitch)) != -1) {
// Remove the sound marker from the end of the message.
%message = getSubStr(%message, 0, %wavStart);
}
// Chat goes to the chat HUD.
if (getWordCount(%message)) {
ChatHud.addLine(%message);
}
}
function onServerMessage(%message)
{
// See if there's a sound at the end of the message, and play it.
if ((%wavStart = playMessageSound(%message)) != -1) {
// Remove the sound marker from the end of the message.
%message = getSubStr(%message, 0, %wavStart);
}
// Server messages go to the chat HUD too.
if (getWordCount(%message)) {
ChatHud.addLine(%message);
}
}
//-----------------------------------------------------------------------------
// MainChatHud methods
//-----------------------------------------------------------------------------
function MainChatHud::onWake( %this )
{
// set the chat hud to the users pref
%this.setChatHudLength( $Pref::ChatHudLength );
}
//------------------------------------------------------------------------------
function MainChatHud::setChatHudLength( %this, %length )
{
OuterChatHud.resize(firstWord(OuterChatHud.position), getWord(OuterChatHud.position, 1),
firstWord(OuterChatHud.extent), $outerChatLenY[%length]);
ChatScrollHud.scrollToBottom();
ChatPageDown.setVisible(false);
}
//------------------------------------------------------------------------------
function MainChatHud::nextChatHudLen( %this )
{
%len = $pref::ChatHudLength++;
if ($pref::ChatHudLength == 4)
$pref::ChatHudLength = 1;
%this.setChatHudLength($pref::ChatHudLength);
}
//-----------------------------------------------------------------------------
// ChatHud methods
// This is the actual message vector/text control which is part of
// the MainChatHud dialog
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
function ChatHud::addLine(%this,%text)
{
//first, see if we're "scrolled up"...
%textHeight = %this.profile.fontSize;
if (%textHeight <= 0)
%textHeight = 12;
%chatScrollHeight = getWord(%this.getGroup().getGroup().extent, 1);
%chatPosition = getWord(%this.extent, 1) - %chatScrollHeight + getWord(%this.position, 1);
%linesToScroll = mFloor((%chatPosition / %textHeight) + 0.5);
if (%linesToScroll > 0)
%origPosition = %this.position;
//add the message...
while( !chatPageDown.isVisible() && HudMessageVector.getNumLines() && (HudMessageVector.getNumLines() >= $pref::HudMessageLogSize))
{
%tag = HudMessageVector.getLineTag(0);
if(%tag != 0)
%tag.delete();
HudMessageVector.popFrontLine();
}
HudMessageVector.pushBackLine(%text, $LastHudTarget);
$LastHudTarget = 0;
//now that we've added the message, see if we need to reset the position
if (%linesToScroll > 0)
{
chatPageDown.setVisible(true);
%this.position = %origPosition;
}
else
chatPageDown.setVisible(false);
}
//-----------------------------------------------------------------------------
function ChatHud::pageUp(%this)
{
// Find out the text line height
%textHeight = %this.profile.fontSize;
if (%textHeight <= 0)
%textHeight = 12;
// Find out how many lines per page are visible
%chatScrollHeight = getWord(%this.getGroup().getGroup().extent, 1);
if (%chatScrollHeight <= 0)
return;
%pageLines = mFloor(%chatScrollHeight / %textHeight) - 1;
if (%pageLines <= 0)
%pageLines = 1;
// See how many lines we actually can scroll up:
%chatPosition = -1 * getWord(%this.position, 1);
%linesToScroll = mFloor((%chatPosition / %textHeight) + 0.5);
if (%linesToScroll <= 0)
return;
if (%linesToScroll > %pageLines)
%scrollLines = %pageLines;
else
%scrollLines = %linesToScroll;
// Now set the position
%this.position = firstWord(%this.position) SPC (getWord(%this.position, 1) + (%scrollLines * %textHeight));
// Display the pageup icon
chatPageDown.setVisible(true);
}
//-----------------------------------------------------------------------------
function ChatHud::pageDown(%this)
{
// Find out the text line height
%textHeight = %this.profile.fontSize;
if (%textHeight <= 0)
%textHeight = 12;
// Find out how many lines per page are visible
%chatScrollHeight = getWord(%this.getGroup().getGroup().extent, 1);
if (%chatScrollHeight <= 0)
return;
%pageLines = mFloor(%chatScrollHeight / %textHeight) - 1;
if (%pageLines <= 0)
%pageLines = 1;
// See how many lines we actually can scroll down:
%chatPosition = getWord(%this.extent, 1) - %chatScrollHeight + getWord(%this.position, 1);
%linesToScroll = mFloor((%chatPosition / %textHeight) + 0.5);
if (%linesToScroll <= 0)
return;
if (%linesToScroll > %pageLines)
%scrollLines = %pageLines;
else
%scrollLines = %linesToScroll;
// Now set the position
%this.position = firstWord(%this.position) SPC (getWord(%this.position, 1) - (%scrollLines * %textHeight));
// See if we have should (still) display the pagedown icon
if (%scrollLines < %linesToScroll)
chatPageDown.setVisible(true);
else
chatPageDown.setVisible(false);
}
//-----------------------------------------------------------------------------
// Support functions
//-----------------------------------------------------------------------------
function pageUpMessageHud()
{
ChatHud.pageUp();
}
function pageDownMessageHud()
{
ChatHud.pageDown();
}
function cycleMessageHudSize()
{
MainChatHud.nextChatHudLen();
}

View File

@@ -0,0 +1,31 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Server Admin Commands
//-----------------------------------------------------------------------------
function SAD(%password)
{
if (%password !$= "")
commandToServer('SAD', %password);
}
function SADSetPassword(%password)
{
commandToServer('SADSetPassword', %password);
}
//----------------------------------------------------------------------------
// Misc server commands
//----------------------------------------------------------------------------
function clientCmdSyncClock(%time)
{
// Time update from the server, this is only sent at the start of a mission
// or when a client joins a game in progress.
}

View File

@@ -0,0 +1,353 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
if ( isObject( moveMap ) )
moveMap.delete();
new ActionMap(moveMap);
//------------------------------------------------------------------------------
// Non-remapable binds
//------------------------------------------------------------------------------
function escapeFromGame()
{
if ( $Server::ServerType $= "SinglePlayer" )
MessageBoxYesNo( "Quit Mission", "Exit from this Mission?", "disconnect();", "");
else
MessageBoxYesNo( "Disconnect", "Disconnect from the server?", "disconnect();", "");
}
moveMap.bindCmd(keyboard, "escape", "", "escapeFromGame();");
function showPlayerList(%val)
{
if (%val)
PlayerListGui.toggle();
}
moveMap.bind( keyboard, F2, showPlayerList );
moveMap.bind( keyboard, F5, toggleParticleEditor);
//------------------------------------------------------------------------------
// Movement Keys
//------------------------------------------------------------------------------
$movementSpeed = 1; // m/s
function setSpeed(%speed)
{
if(%speed)
$movementSpeed = %speed;
}
function moveleft(%val)
{
$mvLeftAction = %val * $movementSpeed;
}
function moveright(%val)
{
$mvRightAction = %val * $movementSpeed;
}
function moveforward(%val)
{
$mvForwardAction = %val * $movementSpeed;
}
function movebackward(%val)
{
$mvBackwardAction = %val * $movementSpeed;
}
function moveup(%val)
{
$mvUpAction = %val * $movementSpeed;
}
function movedown(%val)
{
$mvDownAction = %val * $movementSpeed;
}
function turnLeft( %val )
{
$mvYawRightSpeed = %val ? $Pref::Input::KeyboardTurnSpeed : 0;
}
function turnRight( %val )
{
$mvYawLeftSpeed = %val ? $Pref::Input::KeyboardTurnSpeed : 0;
}
function panUp( %val )
{
$mvPitchDownSpeed = %val ? $Pref::Input::KeyboardTurnSpeed : 0;
}
function panDown( %val )
{
$mvPitchUpSpeed = %val ? $Pref::Input::KeyboardTurnSpeed : 0;
}
function getMouseAdjustAmount(%val)
{
// based on a default camera fov of 90'
return(%val * ($cameraFov / 90) * 0.01);
}
function yaw(%val)
{
$mvYaw += getMouseAdjustAmount(%val);
}
function pitch(%val)
{
$mvPitch += getMouseAdjustAmount(%val);
}
function jump(%val)
{
$mvTriggerCount2++;
}
moveMap.bind( keyboard, a, moveleft );
moveMap.bind( keyboard, d, moveright );
moveMap.bind( keyboard, w, moveforward );
moveMap.bind( keyboard, s, movebackward );
moveMap.bind( keyboard, space, jump );
moveMap.bind( mouse, xaxis, yaw );
moveMap.bind( mouse, yaxis, pitch );
//------------------------------------------------------------------------------
// Mouse Trigger
//------------------------------------------------------------------------------
function mouseFire(%val)
{
$mvTriggerCount0++;
}
function altTrigger(%val)
{
$mvTriggerCount1++;
}
moveMap.bind( mouse, button0, mouseFire );
//moveMap.bind( mouse, button1, altTrigger );
//------------------------------------------------------------------------------
// Zoom and FOV functions
//------------------------------------------------------------------------------
if($Pref::player::CurrentFOV $= "")
$Pref::player::CurrentFOV = 45;
function setZoomFOV(%val)
{
if(%val)
toggleZoomFOV();
}
function toggleZoom( %val )
{
if ( %val )
{
$ZoomOn = true;
setFov( $Pref::player::CurrentFOV );
}
else
{
$ZoomOn = false;
setFov( $Pref::player::DefaultFov );
}
}
moveMap.bind(keyboard, r, setZoomFOV);
moveMap.bind(keyboard, e, toggleZoom);
//------------------------------------------------------------------------------
// Camera & View functions
//------------------------------------------------------------------------------
function toggleFreeLook( %val )
{
if ( %val )
$mvFreeLook = true;
else
$mvFreeLook = false;
}
$firstPerson = true;
function toggleFirstPerson(%val)
{
if (%val)
{
$firstPerson = !$firstPerson;
ServerConnection.setFirstPerson($firstPerson);
}
}
function toggleCamera(%val)
{
if (%val)
commandToServer('ToggleCamera');
}
moveMap.bind( keyboard, z, toggleFreeLook );
moveMap.bind(keyboard, tab, toggleFirstPerson );
moveMap.bind(keyboard, "alt c", toggleCamera);
//------------------------------------------------------------------------------
// Misc. Player stuff
//------------------------------------------------------------------------------
moveMap.bindCmd(keyboard, "ctrl w", "commandToServer('playCel',\"wave\");", "");
moveMap.bindCmd(keyboard, "ctrl s", "commandToServer('playCel',\"salute\");", "");
moveMap.bindCmd(keyboard, "ctrl k", "commandToServer('suicide');", "");
//------------------------------------------------------------------------------
// Item manipulation
//------------------------------------------------------------------------------
moveMap.bindCmd(keyboard, "h", "commandToServer('use',\"HealthKit\");", "");
moveMap.bindCmd(keyboard, "1", "commandToServer('use',\"Crossbow\");", "");
//------------------------------------------------------------------------------
// Message HUD functions
//------------------------------------------------------------------------------
function pageMessageHudUp( %val )
{
if ( %val )
pageUpMessageHud();
}
function pageMessageHudDown( %val )
{
if ( %val )
pageDownMessageHud();
}
function resizeMessageHud( %val )
{
if ( %val )
cycleMessageHudSize();
}
moveMap.bind(keyboard, u, toggleMessageHud );
//moveMap.bind(keyboard, y, teamMessageHud );
moveMap.bind(keyboard, "pageUp", pageMessageHudUp );
moveMap.bind(keyboard, "pageDown", pageMessageHudDown );
moveMap.bind(keyboard, "p", resizeMessageHud );
//------------------------------------------------------------------------------
// Demo recording functions
//------------------------------------------------------------------------------
function startRecordingDemo( %val )
{
if ( %val )
startDemoRecord();
}
function stopRecordingDemo( %val )
{
if ( %val )
stopDemoRecord();
}
moveMap.bind( keyboard, F3, startRecordingDemo );
moveMap.bind( keyboard, F4, stopRecordingDemo );
//------------------------------------------------------------------------------
// Helper Functions
//------------------------------------------------------------------------------
function dropCameraAtPlayer(%val)
{
if (%val)
commandToServer('dropCameraAtPlayer');
}
function dropPlayerAtCamera(%val)
{
if (%val)
commandToServer('DropPlayerAtCamera');
}
moveMap.bind(keyboard, "F8", dropCameraAtPlayer);
moveMap.bind(keyboard, "F7", dropPlayerAtCamera);
function bringUpOptions(%val)
{
if (%val)
Canvas.pushDialog(OptionsDlg);
}
moveMap.bind(keyboard, "ctrl o", bringUpOptions);
//------------------------------------------------------------------------------
// Dubuging Functions
//------------------------------------------------------------------------------
$MFDebugRenderMode = 0;
function cycleDebugRenderMode(%val)
{
if (!%val)
return;
if (getBuildString() $= "Debug")
{
if($MFDebugRenderMode == 0)
{
// Outline mode, including fonts so no stats
$MFDebugRenderMode = 1;
GLEnableOutline(true);
}
else if ($MFDebugRenderMode == 1)
{
// Interior debug mode
$MFDebugRenderMode = 2;
GLEnableOutline(false);
setInteriorRenderMode(7);
showInterior();
}
else if ($MFDebugRenderMode == 2)
{
// Back to normal
$MFDebugRenderMode = 0;
setInteriorRenderMode(0);
GLEnableOutline(false);
show();
}
}
else
{
echo("Debug render modes only available when running a Debug build.");
}
}
GlobalActionMap.bind(keyboard, "F9", cycleDebugRenderMode);
//------------------------------------------------------------------------------
// Misc.
//------------------------------------------------------------------------------
GlobalActionMap.bind(keyboard, "tilde", toggleConsole);
GlobalActionMap.bindCmd(keyboard, "alt enter", "", "toggleFullScreen();");
GlobalActionMap.bindCmd(keyboard, "F1", "", "contextHelp();");
moveMap.bindCmd(keyboard, "n", "NetGraph::toggleNetGraph();", "");

View File

@@ -0,0 +1,32 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Game start / end events sent from the server
//----------------------------------------------------------------------------
function clientCmdGameStart(%seq)
{
PlayerListGui.zeroScores();
}
function clientCmdGameEnd(%seq)
{
// Stop local activity... the game will be destroyed on the server
alxStopAll();
// Copy the current scores from the player list into the
// end game gui (bit of a hack for now).
EndGameGuiList.clear();
for (%i = 0; %i < PlayerListGuiList.rowCount(); %i++) {
%text = PlayerListGuiList.getRowText(%i);
%id = PlayerListGuiList.getRowId(%i);
EndGameGuiList.addRow(%id,%text);
}
EndGameGuiList.sortNumerical(1,false);
// Display the end-game screen
Canvas.setContent(EndGameGui);
}

View File

@@ -0,0 +1,36 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
//------------------------------------------------------------------------------
function LoadingGui::onAdd(%this)
{
%this.qLineCount = 0;
}
//------------------------------------------------------------------------------
function LoadingGui::onWake(%this)
{
// Play sound...
CloseMessagePopup();
}
//------------------------------------------------------------------------------
function LoadingGui::onSleep(%this)
{
// Clear the load info:
if ( %this.qLineCount !$= "" )
{
for ( %line = 0; %line < %this.qLineCount; %line++ )
%this.qLine[%line] = "";
}
%this.qLineCount = 0;
LOAD_MapName.setText( "" );
LOAD_MapDescription.setText( "" );
LoadingProgress.setValue( 0 );
LoadingProgressTxt.setValue( "WAITING FOR SERVER" );
// Stop sound...
}

View File

@@ -0,0 +1,112 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Enter Chat Message Hud
//----------------------------------------------------------------------------
//------------------------------------------------------------------------------
function MessageHud::open(%this)
{
%offset = 6;
if(%this.isVisible())
return;
if(%this.isTeamMsg)
%text = "TEAM:";
else
%text = "GLOBAL:";
MessageHud_Text.setValue(%text);
%windowPos = "0 " @ ( getWord( outerChatHud.position, 1 ) + getWord( outerChatHud.extent, 1 ) + 1 );
%windowExt = getWord( OuterChatHud.extent, 0 ) @ " " @ getWord( MessageHud_Frame.extent, 1 );
%textExtent = getWord(MessageHud_Text.extent, 0) + 14;
%ctrlExtent = getWord(MessageHud_Frame.extent, 0);
Canvas.pushDialog(%this);
messageHud_Frame.position = %windowPos;
messageHud_Frame.extent = %windowExt;
MessageHud_Edit.position = setWord(MessageHud_Edit.position, 0, %textExtent + %offset);
MessageHud_Edit.extent = setWord(MessageHud_Edit.extent, 0, %ctrlExtent - %textExtent - (2 * %offset));
%this.setVisible(true);
deactivateKeyboard();
MessageHud_Edit.makeFirstResponder(true);
}
//------------------------------------------------------------------------------
function MessageHud::close(%this)
{
if(!%this.isVisible())
return;
Canvas.popDialog(%this);
%this.setVisible(false);
if ( $enableDirectInput )
activateKeyboard();
MessageHud_Edit.setValue("");
}
//------------------------------------------------------------------------------
function MessageHud::toggleState(%this)
{
if(%this.isVisible())
%this.close();
else
%this.open();
}
//------------------------------------------------------------------------------
function MessageHud_Edit::onEscape(%this)
{
MessageHud.close();
}
//------------------------------------------------------------------------------
function MessageHud_Edit::eval(%this)
{
%text = trim(%this.getValue());
if(%text !$= "")
{
if(MessageHud.isTeamMsg)
commandToServer('teamMessageSent', %text);
else
commandToServer('messageSent', %text);
}
MessageHud.close();
}
//----------------------------------------------------------------------------
// MessageHud key handlers
function toggleMessageHud(%make)
{
if(%make)
{
MessageHud.isTeamMsg = false;
MessageHud.toggleState();
}
}
function teamMessageHud(%make)
{
if(%make)
{
MessageHud.isTeamMsg = true;
MessageHud.toggleState();
}
}

View File

@@ -0,0 +1,153 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Mission Loading & Mission Info
// The mission loading server handshaking is handled by the
// common/client/missingLoading.cs. This portion handles the interface
// with the game GUI.
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Loading Phases:
// Phase 1: Download Datablocks
// Phase 2: Download Ghost Objects
// Phase 3: Scene Lighting
//----------------------------------------------------------------------------
// Phase 1
//----------------------------------------------------------------------------
function onMissionDownloadPhase1(%missionName, %musicTrack)
{
// Close and clear the message hud (in case it's open)
MessageHud.close();
//cls();
// Reset the loading progress controls:
LoadingProgress.setValue(0);
LoadingProgressTxt.setValue("LOADING DATABLOCKS");
}
function onPhase1Progress(%progress)
{
LoadingProgress.setValue(%progress);
Canvas.repaint();
}
function onPhase1Complete()
{
}
//----------------------------------------------------------------------------
// Phase 2
//----------------------------------------------------------------------------
function onMissionDownloadPhase2()
{
// Reset the loading progress controls:
LoadingProgress.setValue(0);
LoadingProgressTxt.setValue("LOADING OBJECTS");
Canvas.repaint();
}
function onPhase2Progress(%progress)
{
LoadingProgress.setValue(%progress);
Canvas.repaint();
}
function onPhase2Complete()
{
}
function onFileChunkReceived(%fileName, %ofs, %size)
{
LoadingProgress.setValue(%ofs / %size);
LoadingProgressTxt.setValue("Downloading " @ %fileName @ "...");
}
//----------------------------------------------------------------------------
// Phase 3
//----------------------------------------------------------------------------
function onMissionDownloadPhase3()
{
LoadingProgress.setValue(0);
LoadingProgressTxt.setValue("LIGHTING MISSION");
Canvas.repaint();
}
function onPhase3Progress(%progress)
{
LoadingProgress.setValue(%progress);
}
function onPhase3Complete()
{
LoadingProgress.setValue( 1 );
$lightingMission = false;
}
//----------------------------------------------------------------------------
// Mission loading done!
//----------------------------------------------------------------------------
function onMissionDownloadComplete()
{
// Client will shortly be dropped into the game, so this is
// good place for any last minute gui cleanup.
}
//------------------------------------------------------------------------------
// Before downloading a mission, the server transmits the mission
// information through these messages.
//------------------------------------------------------------------------------
addMessageCallback( 'MsgLoadInfo', handleLoadInfoMessage );
addMessageCallback( 'MsgLoadDescripition', handleLoadDescriptionMessage );
addMessageCallback( 'MsgLoadInfoDone', handleLoadInfoDoneMessage );
//------------------------------------------------------------------------------
function handleLoadInfoMessage( %msgType, %msgString, %mapName ) {
// Need to pop up the loading gui to display this stuff.
Canvas.setContent("LoadingGui");
// Clear all of the loading info lines:
for( %line = 0; %line < LoadingGui.qLineCount; %line++ )
LoadingGui.qLine[%line] = "";
LoadingGui.qLineCount = 0;
//
LOAD_MapName.setText( %mapName );
}
//------------------------------------------------------------------------------
function handleLoadDescriptionMessage( %msgType, %msgString, %line )
{
LoadingGui.qLine[LoadingGui.qLineCount] = %line;
LoadingGui.qLineCount++;
// Gather up all the previous lines, append the current one
// and stuff it into the control
%text = "<spush><font:Arial:16>";
for( %line = 0; %line < LoadingGui.qLineCount - 1; %line++ )
%text = %text @ LoadingGui.qLine[%line] @ " ";
%text = %text @ LoadingGui.qLine[%line] @ "<spop>";
LOAD_MapDescription.setText( %text );
}
//------------------------------------------------------------------------------
function handleLoadInfoDoneMessage( %msgType, %msgString )
{
// This will get called after the last description line is sent.
}

View File

@@ -0,0 +1,575 @@
function optionsDlg::setPane(%this, %pane)
{
OptAudioPane.setVisible(false);
OptGraphicsPane.setVisible(false);
OptNetworkPane.setVisible(false);
OptControlsPane.setVisible(false);
("Opt" @ %pane @ "Pane").setVisible(true);
OptRemapList.fillList();
}
function OptionsDlg::onWake(%this)
{
OptGraphicsButton.performClick();
%buffer = getDisplayDeviceList();
%count = getFieldCount( %buffer );
OptGraphicsDriverMenu.clear();
OptScreenshotMenu.init();
OptScreenshotMenu.setValue($pref::Video::screenShotFormat);
for(%i = 0; %i < %count; %i++)
OptGraphicsDriverMenu.add(getField(%buffer, %i), %i);
%selId = OptGraphicsDriverMenu.findText( $pref::Video::displayDevice );
if ( %selId == -1 )
%selId = 0; // How did THAT happen?
OptGraphicsDriverMenu.setSelected( %selId );
OptGraphicsDriverMenu.onSelect( %selId, "" );
// Audio
OptAudioUpdate();
OptAudioVolumeMaster.setValue($pref::Audio::masterVolume);
OptAudioVolumeShell.setValue( $pref::Audio::channelVolume[$GuiAudioType]);
OptAudioVolumeSim.setValue( $pref::Audio::channelVolume[$SimAudioType]);
OptAudioDriverList.clear();
OptAudioDriverList.add("OpenAL", 1);
OptAudioDriverList.add("none", 2);
%selId = OptAudioDriverList.findText($pref::Audio::driver);
if ( %selId == -1 )
%selId = 0; // How did THAT happen?
OptAudioDriverList.setSelected( %selId );
OptAudioDriverList.onSelect( %selId, "" );
}
function OptionsDlg::onSleep(%this)
{
// write out the control config into the rw/config.cs file
moveMap.save( "./client/config.cs" );
}
function OptGraphicsDriverMenu::onSelect( %this, %id, %text )
{
// Attempt to keep the same res and bpp settings:
if ( OptGraphicsResolutionMenu.size() > 0 )
%prevRes = OptGraphicsResolutionMenu.getText();
else
%prevRes = getWords( $pref::Video::resolution, 0, 1 );
// Check if this device is full-screen only:
if ( isDeviceFullScreenOnly( %this.getText() ) )
{
OptGraphicsFullscreenToggle.setValue( true );
OptGraphicsFullscreenToggle.setActive( false );
OptGraphicsFullscreenToggle.onAction();
}
else
OptGraphicsFullscreenToggle.setActive( true );
if ( OptGraphicsFullscreenToggle.getValue() )
{
if ( OptGraphicsBPPMenu.size() > 0 )
%prevBPP = OptGraphicsBPPMenu.getText();
else
%prevBPP = getWord( $pref::Video::resolution, 2 );
}
// Fill the resolution and bit depth lists:
OptGraphicsResolutionMenu.init( %this.getText(), OptGraphicsFullscreenToggle.getValue() );
OptGraphicsBPPMenu.init( %this.getText() );
// Try to select the previous settings:
%selId = OptGraphicsResolutionMenu.findText( %prevRes );
if ( %selId == -1 )
%selId = 0;
OptGraphicsResolutionMenu.setSelected( %selId );
if ( OptGraphicsFullscreenToggle.getValue() )
{
%selId = OptGraphicsBPPMenu.findText( %prevBPP );
if ( %selId == -1 )
%selId = 0;
OptGraphicsBPPMenu.setSelected( %selId );
OptGraphicsBPPMenu.setText( OptGraphicsBPPMenu.getTextById( %selId ) );
}
else
OptGraphicsBPPMenu.setText( "Default" );
}
function OptGraphicsResolutionMenu::init( %this, %device, %fullScreen )
{
%this.clear();
%resList = getResolutionList( %device );
%resCount = getFieldCount( %resList );
%deskRes = getDesktopResolution();
%count = 0;
for ( %i = 0; %i < %resCount; %i++ )
{
%res = getWords( getField( %resList, %i ), 0, 1 );
if ( !%fullScreen )
{
if ( firstWord( %res ) >= firstWord( %deskRes ) )
continue;
if ( getWord( %res, 1 ) >= getWord( %deskRes, 1 ) )
continue;
}
// Only add to list if it isn't there already:
if ( %this.findText( %res ) == -1 )
{
%this.add( %res, %count );
%count++;
}
}
}
function OptGraphicsFullscreenToggle::onAction(%this)
{
Parent::onAction();
%prevRes = OptGraphicsResolutionMenu.getText();
// Update the resolution menu with the new options
OptGraphicsResolutionMenu.init( OptGraphicsDriverMenu.getText(), %this.getValue() );
// Set it back to the previous resolution if the new mode supports it.
%selId = OptGraphicsResolutionMenu.findText( %prevRes );
if ( %selId == -1 )
%selId = 0;
OptGraphicsResolutionMenu.setSelected( %selId );
}
function OptGraphicsBPPMenu::init( %this, %device )
{
%this.clear();
if ( %device $= "Voodoo2" )
%this.add( "16", 0 );
else
{
%resList = getResolutionList( %device );
%resCount = getFieldCount( %resList );
%count = 0;
for ( %i = 0; %i < %resCount; %i++ )
{
%bpp = getWord( getField( %resList, %i ), 2 );
// Only add to list if it isn't there already:
if ( %this.findText( %bpp ) == -1 )
{
%this.add( %bpp, %count );
%count++;
}
}
}
}
function OptScreenshotMenu::init( %this )
{
if( %this.findText("PNG") == -1 )
%this.add("PNG", 0);
if( %this.findText("JPEG") == - 1 )
%this.add("JPEG", 1);
}
function optionsDlg::applyGraphics( %this )
{
%newDriver = OptGraphicsDriverMenu.getText();
%newRes = OptGraphicsResolutionMenu.getText();
%newBpp = OptGraphicsBPPMenu.getText();
%newFullScreen = OptGraphicsFullscreenToggle.getValue();
$pref::Video::screenShotFormat = OptScreenshotMenu.getText();
if ( %newDriver !$= $pref::Video::displayDevice )
{
setDisplayDevice( %newDriver, firstWord( %newRes ), getWord( %newRes, 1 ), %newBpp, %newFullScreen );
//OptionsDlg::deviceDependent( %this );
}
else
setScreenMode( firstWord( %newRes ), getWord( %newRes, 1 ), %newBpp, %newFullScreen );
}
$RemapCount = 0;
$RemapName[$RemapCount] = "Forward";
$RemapCmd[$RemapCount] = "moveforward";
$RemapCount++;
$RemapName[$RemapCount] = "Backward";
$RemapCmd[$RemapCount] = "movebackward";
$RemapCount++;
$RemapName[$RemapCount] = "Strafe Left";
$RemapCmd[$RemapCount] = "moveleft";
$RemapCount++;
$RemapName[$RemapCount] = "Strafe Right";
$RemapCmd[$RemapCount] = "moveright";
$RemapCount++;
$RemapName[$RemapCount] = "Turn Left";
$RemapCmd[$RemapCount] = "turnLeft";
$RemapCount++;
$RemapName[$RemapCount] = "Turn Right";
$RemapCmd[$RemapCount] = "turnRight";
$RemapCount++;
$RemapName[$RemapCount] = "Look Up";
$RemapCmd[$RemapCount] = "panUp";
$RemapCount++;
$RemapName[$RemapCount] = "Look Down";
$RemapCmd[$RemapCount] = "panDown";
$RemapCount++;
$RemapName[$RemapCount] = "Jump";
$RemapCmd[$RemapCount] = "jump";
$RemapCount++;
$RemapName[$RemapCount] = "Fire Weapon";
$RemapCmd[$RemapCount] = "mouseFire";
$RemapCount++;
$RemapName[$RemapCount] = "Adjust Zoom";
$RemapCmd[$RemapCount] = "setZoomFov";
$RemapCount++;
$RemapName[$RemapCount] = "Toggle Zoom";
$RemapCmd[$RemapCount] = "toggleZoom";
$RemapCount++;
$RemapName[$RemapCount] = "Free Look";
$RemapCmd[$RemapCount] = "toggleFreeLook";
$RemapCount++;
$RemapName[$RemapCount] = "Switch 1st/3rd";
$RemapCmd[$RemapCount] = "toggleFirstPerson";
$RemapCount++;
$RemapName[$RemapCount] = "Chat to Everyone";
$RemapCmd[$RemapCount] = "toggleMessageHud";
$RemapCount++;
$RemapName[$RemapCount] = "Message Hud PageUp";
$RemapCmd[$RemapCount] = "pageMessageHudUp";
$RemapCount++;
$RemapName[$RemapCount] = "Message Hud PageDown";
$RemapCmd[$RemapCount] = "pageMessageHudDown";
$RemapCount++;
$RemapName[$RemapCount] = "Resize Message Hud";
$RemapCmd[$RemapCount] = "resizeMessageHud";
$RemapCount++;
$RemapName[$RemapCount] = "Show Scores";
$RemapCmd[$RemapCount] = "showPlayerList";
$RemapCount++;
$RemapName[$RemapCount] = "Animation - Wave";
$RemapCmd[$RemapCount] = "celebrationWave";
$RemapCount++;
$RemapName[$RemapCount] = "Animation - Salute";
$RemapCmd[$RemapCount] = "celebrationSalute";
$RemapCount++;
$RemapName[$RemapCount] = "Use Health";
$RemapCmd[$RemapCount] = "useHealthKit";
$RemapCount++;
$RemapName[$RemapCount] = "Suicide";
$RemapCmd[$RemapCount] = "suicide";
$RemapCount++;
$RemapName[$RemapCount] = "Toggle Camera";
$RemapCmd[$RemapCount] = "toggleCamera";
$RemapCount++;
$RemapName[$RemapCount] = "Drop Camera at Player";
$RemapCmd[$RemapCount] = "dropCameraAtPlayer";
$RemapCount++;
$RemapName[$RemapCount] = "Drop Player at Camera";
$RemapCmd[$RemapCount] = "dropPlayerAtCamera";
$RemapCount++;
$RemapName[$RemapCount] = "Bring up Options Dialog";
$RemapCmd[$RemapCount] = "bringUpOptions";
$RemapCount++;
function restoreDefaultMappings()
{
moveMap.delete();
exec( "~/scripts/default.bind.cs" );
OptRemapList.fillList();
}
function getMapDisplayName( %device, %action )
{
if ( %device $= "keyboard" )
return( %action );
else if ( strstr( %device, "mouse" ) != -1 )
{
// Substitute "mouse" for "button" in the action string:
%pos = strstr( %action, "button" );
if ( %pos != -1 )
{
%mods = getSubStr( %action, 0, %pos );
%object = getSubStr( %action, %pos, 1000 );
%instance = getSubStr( %object, strlen( "button" ), 1000 );
return( %mods @ "mouse" @ ( %instance + 1 ) );
}
else
error( "Mouse input object other than button passed to getDisplayMapName!" );
}
else if ( strstr( %device, "joystick" ) != -1 )
{
// Substitute "joystick" for "button" in the action string:
%pos = strstr( %action, "button" );
if ( %pos != -1 )
{
%mods = getSubStr( %action, 0, %pos );
%object = getSubStr( %action, %pos, 1000 );
%instance = getSubStr( %object, strlen( "button" ), 1000 );
return( %mods @ "joystick" @ ( %instance + 1 ) );
}
else
{
%pos = strstr( %action, "pov" );
if ( %pos != -1 )
{
%wordCount = getWordCount( %action );
%mods = %wordCount > 1 ? getWords( %action, 0, %wordCount - 2 ) @ " " : "";
%object = getWord( %action, %wordCount - 1 );
switch$ ( %object )
{
case "upov": %object = "POV1 up";
case "dpov": %object = "POV1 down";
case "lpov": %object = "POV1 left";
case "rpov": %object = "POV1 right";
case "upov2": %object = "POV2 up";
case "dpov2": %object = "POV2 down";
case "lpov2": %object = "POV2 left";
case "rpov2": %object = "POV2 right";
default: %object = "??";
}
return( %mods @ %object );
}
else
error( "Unsupported Joystick input object passed to getDisplayMapName!" );
}
}
return( "??" );
}
function buildFullMapString( %index )
{
%name = $RemapName[%index];
%cmd = $RemapCmd[%index];
%temp = moveMap.getBinding( %cmd );
%device = getField( %temp, 0 );
%object = getField( %temp, 1 );
if ( %device !$= "" && %object !$= "" )
%mapString = getMapDisplayName( %device, %object );
else
%mapString = "";
return( %name TAB %mapString );
}
function OptRemapList::fillList( %this )
{
%this.clear();
for ( %i = 0; %i < $RemapCount; %i++ )
%this.addRow( %i, buildFullMapString( %i ) );
}
//------------------------------------------------------------------------------
function OptRemapList::doRemap( %this )
{
%selId = %this.getSelectedId();
%name = $RemapName[%selId];
OptRemapText.setValue( "REMAP \"" @ %name @ "\"" );
OptRemapInputCtrl.index = %selId;
Canvas.pushDialog( RemapDlg );
}
//------------------------------------------------------------------------------
function redoMapping( %device, %action, %cmd, %oldIndex, %newIndex )
{
//%actionMap.bind( %device, %action, $RemapCmd[%newIndex] );
moveMap.bind( %device, %action, %cmd );
OptRemapList.setRowById( %oldIndex, buildFullMapString( %oldIndex ) );
OptRemapList.setRowById( %newIndex, buildFullMapString( %newIndex ) );
}
//------------------------------------------------------------------------------
function findRemapCmdIndex( %command )
{
for ( %i = 0; %i < $RemapCount; %i++ )
{
if ( %command $= $RemapCmd[%i] )
return( %i );
}
return( -1 );
}
function OptRemapInputCtrl::onInputEvent( %this, %device, %action )
{
//error( "** onInputEvent called - device = " @ %device @ ", action = " @ %action @ " **" );
Canvas.popDialog( RemapDlg );
// Test for the reserved keystrokes:
if ( %device $= "keyboard" )
{
// Cancel...
if ( %action $= "escape" )
{
// Do nothing...
return;
}
}
%cmd = $RemapCmd[%this.index];
%name = $RemapName[%this.index];
// First check to see if the given action is already mapped:
%prevMap = moveMap.getCommand( %device, %action );
if ( %prevMap !$= %cmd )
{
if ( %prevMap $= "" )
{
moveMap.bind( %device, %action, %cmd );
OptRemapList.setRowById( %this.index, buildFullMapString( %this.index ) );
}
else
{
%mapName = getMapDisplayName( %device, %action );
%prevMapIndex = findRemapCmdIndex( %prevMap );
if ( %prevMapIndex == -1 )
MessageBoxOK( "REMAP FAILED", "\"" @ %mapName @ "\" is already bound to a non-remappable command!" );
else
{
%prevCmdName = $RemapName[%prevMapIndex];
MessageBoxYesNo( "WARNING",
"\"" @ %mapName @ "\" is already bound to \""
@ %prevCmdName @ "\"!\nDo you want to undo this mapping?",
"redoMapping(" @ %device @ ", \"" @ %action @ "\", \"" @ %cmd @ "\", " @ %prevMapIndex @ ", " @ %this.index @ ");", "" );
}
return;
}
}
}
// Audio
function OptAudioUpdate()
{
// set the driver text
%text = "Vendor: " @ alGetString("AL_VENDOR") @
"\nVersion: " @ alGetString("AL_VERSION") @
"\nRenderer: " @ alGetString("AL_RENDERER") @
"\nExtensions: " @ alGetString("AL_EXTENSIONS");
OptAudioInfo.setText(%text);
}
// Channel 0 is unused in-game, but is used here to test master volume.
new AudioDescription(AudioChannel0)
{
volume = 1.0;
isLooping= false;
is3D = false;
type = 0;
};
new AudioDescription(AudioChannel1)
{
volume = 1.0;
isLooping= false;
is3D = false;
type = 1;
};
new AudioDescription(AudioChannel2)
{
volume = 1.0;
isLooping= false;
is3D = false;
type = 2;
};
new AudioDescription(AudioChannel3)
{
volume = 1.0;
isLooping= false;
is3D = false;
type = 3;
};
new AudioDescription(AudioChannel4)
{
volume = 1.0;
isLooping= false;
is3D = false;
type = 4;
};
new AudioDescription(AudioChannel5)
{
volume = 1.0;
isLooping= false;
is3D = false;
type = 5;
};
new AudioDescription(AudioChannel6)
{
volume = 1.0;
isLooping= false;
is3D = false;
type = 6;
};
new AudioDescription(AudioChannel7)
{
volume = 1.0;
isLooping= false;
is3D = false;
type = 7;
};
new AudioDescription(AudioChannel8)
{
volume = 1.0;
isLooping= false;
is3D = false;
type = 8;
};
$AudioTestHandle = 0;
function OptAudioUpdateMasterVolume(%volume)
{
if (%volume == $pref::Audio::masterVolume)
return;
alxListenerf(AL_GAIN_LINEAR, %volume);
$pref::Audio::masterVolume = %volume;
if (!alxIsPlaying($AudioTestHandle))
{
$AudioTestHandle = alxCreateSource("AudioChannel0", expandFilename("~/data/sound/testing.wav"));
alxPlay($AudioTestHandle);
}
}
function OptAudioUpdateChannelVolume(%channel, %volume)
{
if (%channel < 1 || %channel > 8)
return;
if (%volume == $pref::Audio::channelVolume[%channel])
return;
alxSetChannelVolume(%channel, %volume);
$pref::Audio::channelVolume[%channel] = %volume;
if (!alxIsPlaying($AudioTestHandle))
{
$AudioTestHandle = alxCreateSource("AudioChannel"@%channel, expandFilename("~/data/sound/testing.wav"));
alxPlay($AudioTestHandle);
}
}
function OptAudioDriverList::onSelect( %this, %id, %text )
{
if (%text $= "")
return;
if ($pref::Audio::driver $= %text)
return;
$pref::Audio::driver = %text;
OpenALInit();
}

View File

@@ -0,0 +1,52 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// PlayGui is the main TSControl through which the game is viewed.
// The PlayGui also contains the hud controls.
//-----------------------------------------------------------------------------
function PlayGui::onWake(%this)
{
// Turn off any shell sounds...
// alxStop( ... );
$enableDirectInput = "1";
activateDirectInput();
// Message hud dialog
Canvas.pushDialog( MainChatHud );
chatHud.attach(HudMessageVector);
// just update the action map here
moveMap.push();
// hack city - these controls are floating around and need to be clamped
schedule(0, 0, "refreshCenterTextCtrl");
schedule(0, 0, "refreshBottomTextCtrl");
}
function PlayGui::onSleep(%this)
{
Canvas.popDialog( MainChatHud );
// pop the keymaps
moveMap.pop();
}
//-----------------------------------------------------------------------------
function refreshBottomTextCtrl()
{
BottomPrintText.position = "0 0";
}
function refreshCenterTextCtrl()
{
CenterPrintText.position = "0 0";
}

View File

@@ -0,0 +1,32 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Hook into the client update messages to maintain our player list
// and scoreboard.
//-----------------------------------------------------------------------------
addMessageCallback('MsgClientJoin', handleClientJoin);
addMessageCallback('MsgClientDrop', handleClientDrop);
addMessageCallback('MsgClientScoreChanged', handleClientScoreChanged);
//-----------------------------------------------------------------------------
function handleClientJoin(%msgType, %msgString, %clientName, %clientId,
%guid, %score, %isAI, %isAdmin, %isSuperAdmin )
{
PlayerListGui.update(%clientId,detag(%clientName),%isSuperAdmin,
%isAdmin,%isAI,%score);
}
function handleClientDrop(%msgType, %msgString, %clientName, %clientId)
{
PlayerListGui.remove(%clientId);
}
function handleClientScoreChanged(%msgType, %msgString, %score, %clientId)
{
PlayerListGui.updateScore(%clientId,%score);
}

View File

@@ -0,0 +1,166 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
// Functions dealing with connecting to a server
//-----------------------------------------------------------------------------
// Server connection error
//-----------------------------------------------------------------------------
addMessageCallback( 'MsgConnectionError', handleConnectionErrorMessage );
function handleConnectionErrorMessage(%msgType, %msgString, %msgError)
{
// On connect the server transmits a message to display if there
// are any problems with the connection. Most connection errors
// are game version differences, so hopefully the server message
// will tell us where to get the latest version of the game.
$ServerConnectionErrorMessage = %msgError;
}
//----------------------------------------------------------------------------
// GameConnection client callbacks
//----------------------------------------------------------------------------
function GameConnection::initialControlSet(%this)
{
echo ("*** Initial Control Object");
// The first control object has been set by the server
// and we are now ready to go.
// first check if the editor is active
if (!Editor::checkActiveLoadDone())
{
if (Canvas.getContent() != PlayGui.getId())
Canvas.setContent(PlayGui);
}
}
function GameConnection::setLagIcon(%this, %state)
{
if (%this.getAddress() $= "local")
return;
LagIcon.setVisible(%state $= "true");
}
function GameConnection::onConnectionAccepted(%this)
{
// Called on the new connection object after connect() succeeds.
LagIcon.setVisible(false);
}
function GameConnection::onConnectionTimedOut(%this)
{
// Called when an established connection times out
disconnectedCleanup();
MessageBoxOK( "TIMED OUT", "The server connection has timed out.");
}
function GameConnection::onConnectionDropped(%this, %msg)
{
// Established connection was dropped by the server
disconnectedCleanup();
MessageBoxOK( "DISCONNECT", "The server has dropped the connection: " @ %msg);
}
function GameConnection::onConnectionError(%this, %msg)
{
// General connection error, usually raised by ghosted objects
// initialization problems, such as missing files. We'll display
// the server's connection error message.
disconnectedCleanup();
MessageBoxOK( "DISCONNECT", $ServerConnectionErrorMessage @ " (" @ %msg @ ")" );
}
//----------------------------------------------------------------------------
// Connection Failed Events
//----------------------------------------------------------------------------
function GameConnection::onConnectRequestRejected( %this, %msg )
{
switch$(%msg)
{
case "CR_INVALID_PROTOCOL_VERSION":
%error = "Incompatible protocol version: Your game version is not compatible with this server.";
case "CR_INVALID_CONNECT_PACKET":
%error = "Internal Error: badly formed network packet";
case "CR_YOUAREBANNED":
%error = "You are not allowed to play on this server.";
case "CR_SERVERFULL":
%error = "This server is full.";
case "CHR_PASSWORD":
// XXX Should put up a password-entry dialog.
if ($Client::Password $= "")
MessageBoxOK( "REJECTED", "That server requires a password.");
else {
$Client::Password = "";
MessageBoxOK( "REJECTED", "That password is incorrect.");
}
return;
case "CHR_PROTOCOL":
%error = "Incompatible protocol version: Your game version is not compatible with this server.";
case "CHR_CLASSCRC":
%error = "Incompatible game classes: Your game version is not compatible with this server.";
case "CHR_INVALID_CHALLENGE_PACKET":
%error = "Internal Error: Invalid server response packet";
default:
%error = "Connection error. Please try another server. Error code: (" @ %msg @ ")";
}
disconnectedCleanup();
MessageBoxOK( "REJECTED", %error);
}
function GameConnection::onConnectRequestTimedOut(%this)
{
disconnectedCleanup();
MessageBoxOK( "TIMED OUT", "Your connection to the server timed out." );
}
//-----------------------------------------------------------------------------
// Disconnect
//-----------------------------------------------------------------------------
function disconnect()
{
// Delete the connection if it's still there.
if (isObject(ServerConnection))
ServerConnection.delete();
disconnectedCleanup();
// Call destroyServer in case we're hosting
destroyServer();
}
function disconnectedCleanup()
{
// Clear misc script stuff
HudMessageVector.clear();
// Terminate all playing sounds
alxStopAll();
if (isObject(MusicPlayer))
MusicPlayer.stop();
//
LagIcon.setVisible(false);
PlayerListGui.clear();
// Clear all print messages
clientCmdclearBottomPrint();
clientCmdClearCenterPrint();
// Back to the launch screen
Canvas.setContent(MainMenuGui);
// Dump anything we're not using
clearTextureHolds();
purgeResources();
}

View File

@@ -0,0 +1,8 @@
<lmargin%:5><rmargin%:95><font:Arial:16>Welcome to the FPS starter Kit.
<font:Arial Bold:16>About the Starter Kit:<font:Arial:16>The starter kit is a simple example game for you to use in building your own game. This kit is not a complete game in itself, but does illustrate basic play mechanics as well as provide example art. This is a starting point for your future hit title!
<font:Arial Bold:16>About GarageGames.com:<font:Arial:16> <a:www.garagegames.com>GarageGames</a> is a unique Internet publishing label for independent games and gamemakers. We are a band of professional gaming industry veterans committed to publishing truly original and exciting titles on our own terms. Our mission? To provide the independent developer with tools, knowledge, co-conspirators - whatever is needed to unleash the creative spirit and get great innovative independent games to market.
<font:Arial Bold:16>About the Torque Game Engine:<font:Arial:16> The <a:www.garagegames.com/pg/product/view.php?id=1>Torque Game Engine</a> (TGE) is the game engine that powers Tribes 2 developed by Dynamix. TGE is a full featured AAA title engine with the latest in scripting, geometry, particle effects, animation and texturing, as well as award winning multi-player networking code. Check out the <a:www.garagegames.com/pg/product/view.php?id=1#features>feature list</a> for more details. For $100 per programmer, you get the source to the engine of a major product from a major game publisher! Not possible? Check the <a:www.garagegames.com/index.php?sec=mg&mod=resource&page=category&qid=122>FAQ</a> for the details.

View File

@@ -0,0 +1,50 @@
<just:center><lmargin%:5><rmargin%:95><font:Arial Bold:20>Torque Game Engine Credits...
<bitmap:demo/client/ui/seperator>
<font:Arial Bold:20>GarageGames.com Staff<font:Arial:16>
<a:www.garagegames.com/my/home/view.profile.php?qid=3>Jeff "MotoMan" Tunnell</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=1>Tim "Slacker" Gift</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=2>Rick "Entropy" Overman</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=55>Mark "Got Milk?" Frohnmayer</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=5030>Brian "Twitch" Ramage</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=5263>Alex Swanson</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=10185>Jay Moore</a>
<bitmap:demo/client/ui/seperator>
<font:Arial Bold:20>Torque Engine Programmers<font:Arial:16>
<a:www.garagegames.com/my/home/view.profile.php?qid=438>Dave "Symlink" Moore</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=572>John "Uberbob" Folliard</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=4872>Greg "Jett" Lancaster</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=6019>Tim "Kidney Thief" Anderson</a>
John "Sne/\ker" Alden
Lincoln "Missing" Hutton
Brad "BigDevDawg" Heinz
Clark Fagot
Shawn Eastley
<bitmap:demo/client/ui/seperator>
<font:Arial Bold:20>Torque Community Contributers<font:Arial:16>
<a:www.garagegames.com/my/home/view.profile.php?qid=5416>Melv May</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=2678>David Chait</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=6645>John Quigley</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=1992>Ryan J. Parker</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=370>Pat "Killer Bunny" Wilson</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=8863>Ben Garney</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=8052>Chris "Hobbiticus" Weiland</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=22163>Troy McFarland</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=985>Matthew Fairfax</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=5308>Alf M Comps</a>
<a:www.gloofactory.com>Gloo Factory</a>
<font:Arial Bold:20>Torque Beta Testers/Coders<font:Arial:16>
<a:www.garagegames.com/my/home/view.profile.php?qid=561>Wes Bigelow</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=1123>David M. Byttow</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=1605>Phil Carlisle</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=1360>Brandon Curiel</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=2998>Darren Hannah</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=3120>Daniel Krenn</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=3073>Sean Lucas</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=2111>Jeremy Noetzelman</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=105>Kevin Ryan</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=1251>Brian Smith</a>
<a:www.garagegames.com/my/home/view.profile.php?qid=1490>Dusty Wilson</a>

View File

@@ -0,0 +1,28 @@
<lmargin%:5><rmargin%:95><font:Arial Bold:20>Default Game Control Setup...<font:Arial:16>
<tab:105,200>
<font:Arial Bold:16>Movement<font:Arial:16>
W Forward
S Backward
A Step left
D Step right
Space Jump
Mouse Button Fire
<font:Arial Bold:16>Items<font:Arial:16>
H Use health kit
1 Use crossbow
<font:Arial Bold:16>View Control<font:Arial:16>
E Zoom
R Set zoom FOV
TAB First/Third person camera
Alt-C Toggle between camera/player
<font:Arial Bold:16>Chat<font:Arial:16>
U Send public chat message
<font:Arial Bold:16>Misc Functions<font:Arial:16>
Ctrl-O Open in-game options dialog
Ctrl-K Commit suicide
F7 Drop the player at the camera
F8 Drop the camera at the player

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

View File

@@ -0,0 +1,46 @@
//--- OBJECT WRITE BEGIN ---
new GuiFadeinBitmapCtrl(StartupGui) {
profile = "GuiInputCtrlProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
helpTag = "0";
bitmap = "./GarageGames";
wrap = "0";
fadeinTime = "125";
waitTime = "3000";
fadeoutTime = "125";
};
//--- OBJECT WRITE END ---
function loadStartup()
{
StartupGui.done = false;
Canvas.setContent( StartupGui );
schedule(100, 0, checkStartupDone );
alxPlay(AudioStartup);
}
//-------------------------------------
function StartupGui::click()
{
StartupGui.done = true;
}
//-------------------------------------
function checkStartupDone()
{
if (StartupGui.done)
{
echo ("*** Load Main Menu");
loadMainMenu();
}
else
schedule(100, 0, checkStartupDone );
}

View File

@@ -0,0 +1,96 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
//
// Copyright (c) 2001 GarageGames.Com
//-----------------------------------------------------------------------------
//--- OBJECT WRITE BEGIN ---
new GuiControl(aboutDlg) {
profile = "GuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiWindowCtrl() {
profile = "GuiWindowProfile";
horizSizing = "center";
vertSizing = "center";
position = "132 88";
extent = "376 303";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "About...";
maxLength = "255";
resizeWidth = "0";
resizeHeight = "0";
canMove = "1";
canClose = "1";
canMinimize = "0";
canMaximize = "0";
minSize = "50 50";
closeCommand = "Canvas.popDialog(aboutDlg);";
new GuiMLTextCtrl(aboutText) {
profile = "GuiMLTextProfile";
horizSizing = "width";
vertSizing = "relative";
position = "19 36";
extent = "336 241";
minExtent = "8 8";
visible = "1";
helpTag = "0";
lineSpacing = "2";
allowColorChars = "0";
maxChars = "-1";
text = "This is a test";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "303 268";
extent = "60 23";
minExtent = "8 8";
visible = "1";
command = "Canvas.popDialog(aboutDlg);";
helpTag = "0";
text = "OK";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "12 268";
extent = "76 23";
minExtent = "8 8";
visible = "1";
command = "getHelp(\"2. License\");";
helpTag = "0";
text = "License...";
};
};
};
//--- OBJECT WRITE END ---
function aboutDlg::onWake(%this)
{
%text="<just:center><font:Arial Bold:20>FPS Starter Kit\n"@
"<font:Arial:12>"@ getCompileTimeString() @", "@ getBuildString() @"Build\n\n"@
"<font:Arial:16>Copyright (c) 2001 <a:www.garagegames.com>GarageGames.Com</a>\n"@
"<bitmap:rw/client/ui/gglogo150.png>";
aboutText.setText(%text);
}
function aboutText::onURL(%this, %url)
{
echo(%this);
echo(%url);
gotoWebPage( %url );
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

View File

@@ -0,0 +1,160 @@
//-----------------------------------------------------------------------------
// Chat edit window
//-----------------------------------------------------------------------------
new GuiControl(MessageHud)
{
profile = "GuiDefaultProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "0";
noCursor = true;
new GuiBitmapBorderCtrl(MessageHud_Frame) {
profile = "ChatHudBorderProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "120 375";
extent = "400 40";
minExtent = "8 8";
visible = "1";
new GuiBitmapCtrl() {
profile = "GuiDefaultProfile";
horizSizing = "width";
vertSizing = "height";
position = "8 8";
extent = "384 24";
minExtent = "8 8";
visible = "1";
helpTag = "0";
bitmap = "./hudfill.png";
wrap = "0";
};
new GuiTextCtrl(MessageHud_Text)
{
profile = "ChatHudTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "14 12";
extent = "10 22";
minExtent = "8 8";
visible = "1";
};
new GuiTextEditCtrl(MessageHud_Edit)
{
profile = "ChatHudEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 13";
extent = "10 22";
minExtent = "8 8";
visible = "1";
altCommand = "$ThisControl.eval();";
escapeCommand = "MessageHud_Edit.onEscape();";
historySize = "5";
maxLength = "120";
};
};
};
//--- OBJECT WRITE BEGIN ---
new GuiControl(MainChatHud) {
profile = "GuiModelessDialogProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
helpTag = "0";
noCursor = "1";
new GuiControl() {
profile = "GuiDefaultProfile";
horizSizing = "relative";
vertSizing = "bottom";
position = "0 0";
extent = "400 300";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiBitmapBorderCtrl(OuterChatHud) {
profile = "ChatHudBorderProfile";
horizSizing = "width";
vertSizing = "bottom";
position = "0 0";
extent = "272 88";
minExtent = "8 8";
visible = "1";
helpTag = "0";
useVariable = "0";
tile = "0";
new GuiBitmapCtrl() {
profile = "GuiDefaultProfile";
horizSizing = "width";
vertSizing = "height";
position = "8 8";
extent = "256 72";
minExtent = "8 8";
visible = "1";
helpTag = "0";
bitmap = "./hudfill.png";
wrap = "0";
};
new GuiButtonCtrl(chatPageDown) {
profile = "GuiButtonProfile";
horizSizing = "left";
vertSizing = "top";
position = "220 58";
extent = "36 14";
minExtent = "8 8";
visible = "0";
helpTag = "0";
text = "Dwn";
groupNum = "-1";
buttonType = "PushButton";
};
new GuiScrollCtrl(ChatScrollHud) {
profile = "ChatHudScrollProfile";
horizSizing = "width";
vertSizing = "height";
position = "8 8";
extent = "256 72";
minExtent = "8 8";
visible = "1";
helpTag = "0";
willFirstRespond = "1";
hScrollBar = "alwaysOff";
vScrollBar = "alwaysOff";
constantThumbHeight = "0";
childMargin = "0 0";
new GuiMessageVectorCtrl(ChatHud) {
profile = "ChatHudMessageProfile";
horizSizing = "width";
vertSizing = "height";
position = "1 1";
extent = "252 16";
minExtent = "8 8";
visible = "1";
helpTag = "0";
lineSpacing = "0";
lineContinuedIndex = "10";
allowedMatches[0] = "http";
allowedMatches[1] = "tgeserver";
matchColor = "0 0 255 255";
maxColorIndex = "5";
};
};
};
};
};
//--- OBJECT WRITE END ---

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 329 B

View File

@@ -0,0 +1,109 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (c) 2002 GarageGames.Com
//-----------------------------------------------------------------------------
new GuiControlProfile (GuiDefaultProfile)
{
tab = false;
canKeyFocus = false;
hasBitmapArray = false;
mouseOverSelected = false;
// fill color
opaque = false;
fillColor = "201 182 153";
fillColorHL = "221 202 173";
fillColorNA = "221 202 173";
// border color
border = false;
borderColor = "0 0 0";
borderColorHL = "179 134 94";
borderColorNA = "126 79 37";
// bevel color
bevelColorHL = "255 255 255";
bevelColorLL = "0 0 0";
// font
fontType = "Arial";
fontSize = 14;
fontCharset = CHINESEBIG5;
fontColor = "0 0 0";
fontColorHL = "32 100 100";
fontColorNA = "0 0 0";
fontColorSEL= "200 200 200";
// bitmap information
bitmap = "./demoWindow";
bitmapBase = "";
textOffset = "0 0";
// used by guiTextControl
modal = true;
justify = "left";
autoSizeWidth = false;
autoSizeHeight = false;
returnTab = false;
numbersOnly = false;
cursorColor = "0 0 0 255";
// sounds
soundButtonDown = "";
soundButtonOver = "";
};
new GuiControlProfile (GuiWindowProfile)
{
opaque = true;
border = 2;
fillColor = "201 182 153";
fillColorHL = "221 202 173";
fillColorNA = "221 202 173";
fontColor = "255 255 255";
fontColorHL = "255 255 255";
text = "GuiWindowCtrl test";
bitmap = "./demoWindow";
textOffset = "6 6";
hasBitmapArray = true;
justify = "center";
};
new GuiControlProfile (GuiScrollProfile)
{
opaque = true;
fillColor = "255 255 255";
border = 3;
borderThickness = 2;
borderColor = "0 0 0";
bitmap = "./demoScroll";
hasBitmapArray = true;
};
new GuiControlProfile (GuiCheckBoxProfile)
{
opaque = false;
fillColor = "232 232 232";
border = false;
borderColor = "0 0 0";
fontSize = 14;
fontColor = "0 0 0";
fontColorHL = "32 100 100";
fixedExtent = true;
justify = "left";
bitmap = "./demoCheck";
hasBitmapArray = true;
};
new GuiControlProfile (GuiRadioProfile)
{
fontSize = 14;
fillColor = "232 232 232";
fontColorHL = "32 100 100";
fixedExtent = true;
bitmap = "./demoRadio";
hasBitmapArray = true;
};

View File

@@ -0,0 +1,124 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Override base controls
GuiButtonProfile.soundButtonOver = "AudioButtonOver";
//-----------------------------------------------------------------------------
// Chat Hud profiles
new GuiControlProfile (ChatHudEditProfile)
{
opaque = false;
fillColor = "255 255 255";
fillColorHL = "128 128 128";
border = false;
borderThickness = 0;
borderColor = "40 231 240";
fontColor = "40 231 240";
fontColorHL = "40 231 240";
fontColorNA = "128 128 128";
textOffset = "0 2";
autoSizeWidth = false;
autoSizeHeight = true;
tab = true;
canKeyFocus = true;
};
new GuiControlProfile (ChatHudTextProfile)
{
opaque = false;
fillColor = "255 255 255";
fillColorHL = "128 128 128";
border = false;
borderThickness = 0;
borderColor = "40 231 240";
fontColor = "40 231 240";
fontColorHL = "40 231 240";
fontColorNA = "128 128 128";
textOffset = "0 0";
autoSizeWidth = true;
autoSizeHeight = true;
tab = true;
canKeyFocus = true;
};
new GuiControlProfile ("ChatHudMessageProfile")
{
fontType = "Arial";
fontSize = 16;
fontColor = "44 172 181"; // default color (death msgs, scoring, inventory)
fontColors[1] = "4 235 105"; // client join/drop, tournament mode
fontColors[2] = "219 200 128"; // gameplay, admin/voting, pack/deployable
fontColors[3] = "77 253 95"; // team chat, spam protection message, client tasks
fontColors[4] = "40 231 240"; // global chat
fontColors[5] = "200 200 50 200"; // used in single player game
// WARNING! Colors 6-9 are reserved for name coloring
autoSizeWidth = true;
autoSizeHeight = true;
};
new GuiControlProfile ("ChatHudScrollProfile")
{
opaque = false;
border = false;
borderColor = "0 255 0";
bitmap = "common/ui/darkScroll";
hasBitmapArray = true;
};
//-----------------------------------------------------------------------------
// Common Hud profiles
new GuiControlProfile ("HudScrollProfile")
{
opaque = false;
border = true;
borderColor = "0 255 0";
bitmap = "common/ui/darkScroll";
hasBitmapArray = true;
};
new GuiControlProfile ("HudTextProfile")
{
opaque = false;
fillColor = "128 128 128";
fontColor = "0 255 0";
border = true;
borderColor = "0 255 0";
};
new GuiControlProfile ("ChatHudBorderProfile")
{
bitmap = "./chatHudBorderArray";
hasBitmapArray = true;
opaque = false;
};
//-----------------------------------------------------------------------------
// Center and bottom print
new GuiControlProfile ("CenterPrintProfile")
{
opaque = false;
fillColor = "128 128 128";
fontColor = "0 255 0";
border = true;
borderColor = "0 255 0";
};
new GuiControlProfile ("CenterPrintTextProfile")
{
opaque = false;
fontType = "Arial";
fontSize = 12;
fontColor = "0 255 0";
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 304 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 528 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,3 @@
<lmargin%:6><rmargin%:94><font:Arial:16>Thank you for checking out the GarageGames Community Project - Realm Wars.
Realm Wars is a work in progress. If you are a game player looking for an epic multiplayer fantasy action game, stay tuned at <a:www.garagegames.com>GarageGames</a> for information about the progress of Realm Wars. If you are a game developer (or aspiring to be one) and want to contribute to the project, <a:www.garagegames.com/mg/projects/realmwars/>click here</a> to get involved.

View File

@@ -0,0 +1,71 @@
//--- OBJECT WRITE BEGIN ---
new GuiChunkedBitmapCtrl(EndGameGui) {
profile = "GuiContentProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
helpTag = "0";
bitmap = "./background";
useVariable = "0";
tile = "0";
new GuiControl() {
profile = "GuiWindowProfile";
horizSizing = "center";
vertSizing = "center";
position = "92 86";
extent = "455 308";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiTextCtrl() {
profile = "GuiMediumTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "101 15";
extent = "251 28";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Game Over - Final Scores:";
maxLength = "255";
};
new GuiScrollCtrl() {
profile = "GuiScrollProfile";
horizSizing = "width";
vertSizing = "height";
position = "5 51";
extent = "444 251";
minExtent = "8 8";
visible = "1";
helpTag = "0";
willFirstRespond = "1";
hScrollBar = "alwaysOff";
vScrollBar = "dynamic";
constantThumbHeight = "0";
childMargin = "0 0";
defaultLineHeight = "15";
new GuiTextListCtrl(EndGameGuiList) {
profile = "GuiTextProfile";
horizSizing = "width";
vertSizing = "height";
position = "2 2";
extent = "440 16";
minExtent = "8 8";
visible = "1";
helpTag = "0";
enumerate = "0";
resizeCell = "1";
columns = "0 256";
fitParentWidth = "1";
clipColumnText = "0";
};
};
};
};
//--- OBJECT WRITE END ---

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 510 B

View File

@@ -0,0 +1,439 @@
//--- OBJECT WRITE BEGIN ---
new GuiChunkedBitmapCtrl(JoinServerGui) {
profile = "GuiContentProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
bitmap = "./background.jpg";
useVariable = "0";
tile = "0";
helpTag = "0";
new GuiControl() {
profile = "GuiWindowProfile";
horizSizing = "center";
vertSizing = "center";
position = "60 80";
extent = "520 320";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "14 59";
extent = "24 18";
minExtent = "8 8";
visible = "1";
text = "Server Name";
maxLength = "255";
helpTag = "0";
};
new GuiButtonCtrl(JS_queryMaster) {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "216 289";
extent = "90 23";
minExtent = "8 8";
visible = "1";
command = "Canvas.getContent().query();";
text = "Query Master";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
new GuiButtonCtrl(JS_queryLan) {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "114 289";
extent = "90 23";
minExtent = "8 8";
visible = "1";
command = "Canvas.getContent().queryLan();";
text = "Query LAN";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
new GuiButtonCtrl(JS_refreshServer) {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "318 289";
extent = "90 23";
minExtent = "8 8";
visible = "1";
command = "Canvas.getContent().refresh();";
text = "Refresh Server";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
new GuiButtonCtrl(JS_joinServer) {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "420 289";
extent = "90 23";
minExtent = "8 8";
visible = "1";
command = "Canvas.getContent().join();";
text = "Join Server!";
groupNum = "-1";
buttonType = "PushButton";
active = "0";
helpTag = "0";
};
new GuiScrollCtrl() {
profile = "GuiScrollProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "10 92";
extent = "500 186";
minExtent = "8 8";
visible = "1";
willFirstRespond = "1";
hScrollBar = "dynamic";
vScrollBar = "alwaysOn";
constantThumbHeight = "0";
childMargin = "0 0";
defaultLineHeight = "15";
helpTag = "0";
new GuiTextListCtrl(JS_serverList) {
profile = "GuiTextArrayProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "2 2";
extent = "478 8";
minExtent = "8 8";
visible = "1";
enumerate = "0";
resizeCell = "1";
columns = "0 305 370 500";
fitParentWidth = "1";
clipColumnText = "0";
noDuplicates = "false";
helpTag = "0";
};
};
new GuiTextEditCtrl() {
profile = "GuiTextEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "98 34";
extent = "134 18";
minExtent = "8 8";
visible = "1";
variable = "pref::Player::Name";
maxLength = "255";
historySize = "0";
password = "0";
tabComplete = "0";
sinkAllKeyEvents = "0";
helpTag = "0";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "12 30";
extent = "63 18";
minExtent = "8 8";
visible = "1";
text = "Player Name:";
maxLength = "255";
helpTag = "0";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "269 59";
extent = "36 18";
minExtent = "8 8";
visible = "1";
text = "Players";
maxLength = "255";
helpTag = "0";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "335 59";
extent = "38 18";
minExtent = "8 8";
visible = "1";
text = "Version";
maxLength = "255";
helpTag = "0";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "412 59";
extent = "28 18";
minExtent = "8 8";
visible = "1";
text = "Game";
maxLength = "255";
helpTag = "0";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "212 59";
extent = "20 18";
minExtent = "8 8";
visible = "1";
text = "Ping";
maxLength = "255";
helpTag = "0";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "72 59";
extent = "63 18";
minExtent = "8 8";
visible = "1";
text = "Server Name";
maxLength = "255";
helpTag = "0";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "12 289";
extent = "90 23";
minExtent = "8 8";
visible = "1";
command = "Canvas.getContent().exit();";
text = "<< Back";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
new GuiControl(JS_queryStatus) {
profile = "GuiWindowProfile";
horizSizing = "center";
vertSizing = "center";
position = "105 135";
extent = "310 50";
minExtent = "8 8";
visible = "0";
helpTag = "0";
new GuiButtonCtrl(JS_cancelQuery) {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "9 15";
extent = "64 20";
minExtent = "8 8";
visible = "1";
command = "Canvas.getContent().cancel();";
text = "Cancel!";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
new GuiProgressCtrl(JS_statusBar) {
profile = "GuiProgressProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "84 15";
extent = "207 20";
minExtent = "8 8";
visible = "1";
helpTag = "0";
};
new GuiTextCtrl(JS_statusText) {
profile = "GuiProgressTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "85 14";
extent = "205 20";
minExtent = "8 8";
visible = "1";
maxLength = "255";
helpTag = "0";
};
};
new GuiTextCtrl(JS_status) {
profile = "GuiBigTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "243 14";
extent = "266 40";
minExtent = "266 40";
visible = "1";
maxLength = "255";
};
};
};
//--- OBJECT WRITE END ---
//----------------------------------------
function JoinServerGui::onWake()
{
// Double check the status. Tried setting this the control
// inactive to start with, but that didn't seem to work.
JS_joinServer.setActive(JS_serverList.rowCount() > 0);
}
//----------------------------------------
function JoinServerGui::query(%this)
{
queryMasterServer(
0, // Query flags
$Client::GameTypeQuery, // gameTypes
$Client::MissionTypeQuery, // missionType
0, // minPlayers
100, // maxPlayers
0, // maxBots
2, // regionMask
0, // maxPing
100, // minCPU
0 // filterFlags
);
}
//----------------------------------------
function JoinServerGui::queryLan(%this)
{
queryLANServers(
28000, // lanPort for local queries
0, // Query flags
$Client::GameTypeQuery, // gameTypes
$Client::MissionTypeQuery, // missionType
0, // minPlayers
100, // maxPlayers
0, // maxBots
2, // regionMask
0, // maxPing
100, // minCPU
0 // filterFlags
);
}
//----------------------------------------
function JoinServerGui::cancel(%this)
{
cancelServerQuery();
JS_queryStatus.setVisible(false);
}
//----------------------------------------
function JoinServerGui::join(%this)
{
cancelServerQuery();
%id = JS_serverList.getSelectedId();
// The server info index is stored in the row along with the
// rest of displayed info.
%index = getField(JS_serverList.getRowTextById(%id),6);
if (setServerInfo(%index)) {
%conn = new GameConnection(ServerConnection);
%conn.setConnectArgs($pref::Player::Name);
%conn.setJoinPassword($Client::Password);
%conn.connect($ServerInfo::Address);
}
}
//----------------------------------------
function JoinServerGui::refresh(%this)
{
cancelServerQuery();
%id = JS_serverList.getSelectedId();
// The server info index is stored in the row along with the
// rest of displayed info.
%index = getField(JS_serverList.getRowTextById(%id),6);
if (setServerInfo(%index)) {
querySingleServer( $ServerInfo::Address, 0 );
}
}
//----------------------------------------
function JoinServerGui::refreshSelectedServer( %this )
{
querySingleServer( $JoinGameAddress, 0 );
}
//----------------------------------------
function JoinServerGui::exit(%this)
{
cancelServerQuery();
Canvas.setContent(mainMenuGui);
}
//----------------------------------------
function JoinServerGui::update(%this)
{
// Copy the servers into the server list.
JS_queryStatus.setVisible(false);
JS_serverList.clear();
%sc = getServerCount();
for (%i = 0; %i < %sc; %i++) {
setServerInfo(%i);
JS_serverList.addRow(%i,
$ServerInfo::Name TAB
$ServerInfo::Ping TAB
$ServerInfo::PlayerCount @ "/" @ $ServerInfo::MaxPlayers TAB
%i); // ServerInfo index stored also
}
JS_serverList.sort(0);
JS_serverList.setSelectedRow(0);
JS_serverList.scrollVisible(0);
JS_joinServer.setActive(JS_serverList.rowCount() > 0);
}
//----------------------------------------
function onServerQueryStatus(%status, %msg, %value)
{
echo("ServerQuery: " SPC %status SPC %msg SPC %value);
// Update query status
// States: start, update, ping, query, done
// value = % (0-1) done for ping and query states
if (!JS_queryStatus.isVisible())
JS_queryStatus.setVisible(true);
switch$ (%status) {
case "start":
JS_joinServer.setActive(false);
JS_queryMaster.setActive(false);
JS_statusText.setText(%msg);
JS_statusBar.setValue(0);
JS_serverList.clear();
case "ping":
JS_statusText.setText("Ping Servers");
JS_statusBar.setValue(%value);
case "query":
JS_statusText.setText("Query Servers");
JS_statusBar.setValue(%value);
case "done":
JS_queryMaster.setActive(true);
JS_queryStatus.setVisible(false);
JS_status.setText(%msg);
JoinServerGui.update();
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,99 @@
new GuiControlProfile ("LoadingGuiContentProfile")
{
opaque = true;
fillColor = "200 200 200";
border = true;
borderColor = "0 0 0";
};
//--- OBJECT WRITE BEGIN ---
new GuiChunkedBitmapCtrl(LoadingGui) {
profile = "GuiContentProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
bitmap = "./background";
useVariable = "0";
tile = "0";
helpTag = "0";
qLineCount = "0";
new GuiControl() {
profile = "GuiWindowProfile";
horizSizing = "center";
vertSizing = "center";
position = "92 86";
extent = "455 308";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiTextCtrl(LOAD_MapName) {
profile = "GuiMediumTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "7 6";
extent = "8 28";
minExtent = "8 8";
visible = "1";
text = "Map Name";
maxLength = "255";
helpTag = "0";
};
new GuiMLTextCtrl(LOAD_MapDescription) {
profile = "GuiMLTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "7 62";
extent = "440 14";
minExtent = "8 8";
visible = "1";
lineSpacing = "2";
allowColorChars = "0";
maxChars = "-1";
helpTag = "0";
};
new GuiProgressCtrl(LoadingProgress) {
profile = "GuiProgressProfile";
horizSizing = "right";
vertSizing = "top";
position = "128 262";
extent = "262 25";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiTextCtrl(LoadingProgressTxt) {
profile = "GuiProgressTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "-4 3";
extent = "262 20";
minExtent = "8 8";
visible = "1";
text = "LOADING MISSION";
maxLength = "255";
helpTag = "0";
};
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "58 262";
extent = "65 25";
minExtent = "20 20";
visible = "1";
command = "disconnect();";
accelerator = "escape";
text = "Cancel!";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
};
};
//--- OBJECT WRITE END ---

View File

@@ -0,0 +1,103 @@
//--- OBJECT WRITE BEGIN ---
new GuiChunkedBitmapCtrl(MainMenuGui) {
profile = "GuiContentProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
bitmap = "./background";
useVariable = "0";
tile = "0";
helpTag = "0";
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "36 413";
extent = "110 20";
minExtent = "8 8";
visible = "1";
command = "quit();";
text = "Quit!";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "36 237";
extent = "110 20";
minExtent = "8 8";
visible = "1";
command = "Canvas.setContent(startMissionGui);";
text = "Start Mission...";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "36 264";
extent = "110 20";
minExtent = "8 8";
visible = "1";
command = "Canvas.setContent(JoinServerGui);";
text = "Join Server...";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "36 291";
extent = "110 20";
minExtent = "8 8";
visible = "1";
command = "Canvas.pushDialog(optionsDlg);";
text = "Options...";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "36 318";
extent = "110 20";
minExtent = "8 8";
visible = "1";
command = "getHelp(\"0. About\");";
text = "About...";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "top";
position = "36 386";
extent = "110 20";
minExtent = "8 8";
visible = "1";
command = "Canvas.pushDialog(recordingsDlg);";
text = "Recordings...";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
};
//--- OBJECT WRITE END ---

View File

@@ -0,0 +1,433 @@
//--- OBJECT WRITE BEGIN ---
new GuiControl(optionsDlg) {
profile = "GuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiWindowCtrl() {
profile = "GuiWindowProfile";
horizSizing = "center";
vertSizing = "center";
position = "131 88";
extent = "377 303";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Options";
maxLength = "255";
resizeWidth = "0";
resizeHeight = "0";
canMove = "1";
canClose = "1";
canMinimize = "0";
canMaximize = "0";
minSize = "50 50";
closeCommand = "Canvas.popDialog(optionsDlg);";
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "305 270";
extent = "60 23";
minExtent = "8 8";
visible = "1";
command = "Canvas.popDialog(optionsDlg);";
helpTag = "0";
text = "OK";
groupNum = "-1";
buttonType = "PushButton";
};
new GuiButtonCtrl(OptGraphicsButton) {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "9 28";
extent = "117 23";
minExtent = "8 8";
visible = "1";
command = "optionsDlg.setPane(Graphics);";
helpTag = "0";
text = "Graphics";
groupNum = "-1";
buttonType = "RadioButton";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "129 28";
extent = "117 23";
minExtent = "8 8";
visible = "1";
command = "optionsDlg.setPane(Audio);";
helpTag = "0";
text = "Audio";
groupNum = "-1";
buttonType = "RadioButton";
};
new GuiControl(OptControlsPane) {
profile = "GuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "9 55";
extent = "357 208";
minExtent = "8 8";
visible = "0";
helpTag = "0";
new GuiScrollCtrl() {
profile = "GuiScrollProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 26";
extent = "357 182";
minExtent = "8 8";
visible = "1";
helpTag = "0";
willFirstRespond = "1";
hScrollBar = "alwaysOff";
vScrollBar = "alwaysOn";
constantThumbHeight = "0";
childMargin = "0 0";
defaultLineHeight = "15";
new GuiTextListCtrl(OptRemapList) {
profile = "GuiTextListProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "2 2";
extent = "337 8";
minExtent = "8 8";
visible = "1";
altCommand = "OptRemapList.doRemap();";
helpTag = "0";
enumerate = "0";
resizeCell = "1";
columns = "0 160";
fitParentWidth = "1";
clipColumnText = "0";
};
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "5 2";
extent = "64 18";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Control Name";
maxLength = "255";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "166 2";
extent = "72 18";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Control Binding";
maxLength = "255";
};
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "249 28";
extent = "117 23";
minExtent = "8 8";
visible = "1";
command = "optionsDlg.setPane(Controls);";
helpTag = "0";
text = "Controls";
groupNum = "-1";
buttonType = "RadioButton";
};
new GuiControl(OptAudioPane) {
profile = "GuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "9 55";
extent = "357 208";
minExtent = "8 8";
visible = "0";
helpTag = "0";
new GuiSliderCtrl(OptAudioVolumeSim) {
profile = "GuiSliderProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "107 172";
extent = "240 34";
minExtent = "8 8";
visible = "1";
variable = "value";
altCommand = "OptAudioUpdateChannelVolume($SimAudioType, OptAudioVolumeSim.value);";
helpTag = "0";
range = "0.000000 1.000000";
ticks = "8";
value = "0.8";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "11 94";
extent = "72 18";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Master Volume";
maxLength = "255";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "22 132";
extent = "62 18";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Shell Volume";
maxLength = "255";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "28 169";
extent = "56 18";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Sim Volume";
maxLength = "255";
};
new GuiSliderCtrl(OptAudioVolumeMaster) {
profile = "GuiSliderProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "106 98";
extent = "240 34";
minExtent = "8 8";
visible = "1";
variable = "value";
altCommand = "OptAudioUpdateMasterVolume(OptAudioVolumeMaster.value);";
helpTag = "0";
range = "0.000000 1.000000";
ticks = "8";
value = "0.852174";
};
new GuiSliderCtrl(OptAudioVolumeShell) {
profile = "GuiSliderProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "106 135";
extent = "240 34";
minExtent = "8 8";
visible = "1";
variable = "value";
altCommand = "OptAudioUpdateChannelVolume($GuiAudioType, OptAudioVolumeShell.value);";
helpTag = "0";
range = "0.000000 1.000000";
ticks = "8";
value = "0.8";
};
new GuiMLTextCtrl(OptAudioInfo) {
profile = "GuiMLTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "149 10";
extent = "190 14";
minExtent = "8 8";
visible = "1";
helpTag = "0";
lineSpacing = "2";
allowColorChars = "0";
maxChars = "-1";
};
new GuiPopUpMenuCtrl(OptAudioDriverList) {
profile = "GuiPopUpMenuProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "10 32";
extent = "120 20";
minExtent = "8 8";
visible = "1";
helpTag = "0";
maxLength = "255";
maxPopupHeight = "200";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "11 9";
extent = "63 18";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Audio Driver:";
maxLength = "255";
};
};
new GuiControl(OptGraphicsPane) {
profile = "GuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "9 55";
extent = "357 208";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "21 10";
extent = "70 18";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Display Driver:";
maxLength = "255";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "21 34";
extent = "53 18";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Resolution:";
maxLength = "255";
};
new GuiCheckBoxCtrl(OptGraphicsFullscreenToggle) {
profile = "GuiCheckBoxProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "21 120";
extent = "137 25";
minExtent = "8 8";
visible = "1";
variable = "$pref::Video::fullScreen";
helpTag = "0";
text = "Fullscreen Video";
groupNum = "-1";
buttonType = "ToggleButton";
maxLength = "255";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "149 171";
extent = "78 23";
minExtent = "8 8";
visible = "1";
command = "optionsDlg.applyGraphics();";
helpTag = "0";
text = "Apply";
groupNum = "-1";
buttonType = "PushButton";
};
new GuiPopUpMenuCtrl(OptGraphicsDriverMenu) {
profile = "GuiPopUpMenuProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "113 10";
extent = "130 23";
minExtent = "8 8";
visible = "1";
helpTag = "0";
maxLength = "255";
maxPopupHeight = "200";
};
new GuiPopUpMenuCtrl(OptGraphicsResolutionMenu) {
profile = "GuiPopUpMenuProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "113 36";
extent = "130 23";
minExtent = "8 8";
visible = "1";
helpTag = "0";
maxLength = "255";
maxPopupHeight = "200";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "21 60";
extent = "46 18";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Bit Depth:";
maxLength = "255";
};
new GuiPopUpMenuCtrl(OptGraphicsBPPMenu) {
profile = "GuiPopUpMenuProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "113 62";
extent = "130 23";
minExtent = "8 8";
visible = "1";
helpTag = "0";
maxLength = "255";
maxPopupHeight = "200";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "21 86";
extent = "59 18";
minExtent = "8 2";
visible = "1";
helpTag = "0";
text = "Screenshot:";
maxLength = "255";
};
new GuiPopUpMenuCtrl(OptScreenshotMenu) {
profile = "GuiPopUpMenuProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "113 88";
extent = "130 23";
minExtent = "8 2";
visible = "1";
helpTag = "0";
maxLength = "255";
maxPopupHeight = "200";
};
};
new GuiControl(OptNetworkPane) {
profile = "GuiWindowProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "9 55";
extent = "357 208";
minExtent = "8 8";
visible = "0";
helpTag = "0";
};
};
};
//--- OBJECT WRITE END ---

View File

@@ -0,0 +1,178 @@
//--- OBJECT WRITE BEGIN ---
new GameTSCtrl(PlayGui) {
profile = "GuiContentProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
helpTag = "0";
noCursor = "1";
new GuiBitmapCtrl(CenterPrintDlg) {
profile = "CenterPrintProfile";
horizSizing = "center";
vertSizing = "center";
position = "45 230";
extent = "550 20";
minExtent = "8 8";
visible = "0";
helpTag = "0";
bitmap = "./hudfill.png";
wrap = "0";
new GuiMLTextCtrl(CenterPrintText) {
profile = "CenterPrintTextProfile";
horizSizing = "center";
vertSizing = "center";
position = "0 0";
extent = "546 12";
minExtent = "8 8";
visible = "1";
helpTag = "0";
lineSpacing = "2";
allowColorChars = "0";
maxChars = "-1";
};
};
new GuiBitmapCtrl(BottomPrintDlg) {
profile = "CenterPrintProfile";
horizSizing = "center";
vertSizing = "top";
position = "45 375";
extent = "550 20";
minExtent = "8 8";
visible = "0";
helpTag = "0";
bitmap = "./hudfill.png";
wrap = "0";
new GuiMLTextCtrl(BottomPrintText) {
profile = "CenterPrintTextProfile";
horizSizing = "center";
vertSizing = "center";
position = "0 0";
extent = "546 12";
minExtent = "8 8";
visible = "1";
helpTag = "0";
lineSpacing = "2";
allowColorChars = "0";
maxChars = "-1";
};
};
new GuiBitmapCtrl(LagIcon) {
profile = "GuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "572 3";
extent = "32 32";
minExtent = "8 8";
visible = "0";
helpTag = "0";
bitmap = "./lagIcon.png";
wrap = "0";
};
new GuiShapeNameHud() {
profile = "GuiDefaultProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 0";
extent = "653 485";
minExtent = "8 8";
visible = "1";
helpTag = "0";
fillColor = "0.000000 0.000000 0.000000 0.250000";
frameColor = "0.000000 1.000000 0.000000 1.000000";
textColor = "0.000000 1.000000 0.000000 1.000000";
showFill = "0";
showFrame = "0";
verticalOffset = "0.2";
distanceFade = "0.1";
damageFrameColor = "1.000000 0.600000 0.000000 1.000000";
damageFillColor = "0.000000 1.000000 0.000000 1.000000";
damageRect = "30 4";
};
new GuiHealthBarHud() {
profile = "GuiDefaultProfile";
horizSizing = "right";
vertSizing = "top";
position = "14 315";
extent = "26 138";
minExtent = "8 8";
visible = "1";
helpTag = "0";
showFill = "1";
displayEnergy = "0";
showFrame = "1";
fillColor = "0.000000 0.000000 0.000000 0.500000";
frameColor = "0.000000 1.000000 0.000000 0.000000";
damageFillColor = "0.800000 0.000000 0.000000 1.000000";
pulseRate = "1000";
pulseThreshold = "0.5";
value = "1";
};
new GuiCrossHairHud() {
profile = "GuiDefaultProfile";
horizSizing = "center";
vertSizing = "center";
position = "304 224";
extent = "32 32";
minExtent = "8 8";
visible = "1";
helpTag = "0";
bitmap = "./crossHair";
wrap = "0";
damageFillColor = "0.000000 1.000000 0.000000 1.000000";
damageFrameColor = "1.000000 0.600000 0.000000 1.000000";
damageRect = "50 4";
damageOffset = "0 10";
};
new GuiBitmapCtrl() {
profile = "GuiDefaultProfile";
horizSizing = "right";
vertSizing = "top";
position = "11 299";
extent = "32 172";
minExtent = "8 8";
visible = "1";
helpTag = "0";
bitmap = "./healthBar";
wrap = "0";
};
new GuiHealthBarHud() {
profile = "GuiDefaultProfile";
horizSizing = "right";
vertSizing = "top";
position = "53 315";
extent = "26 138";
minExtent = "8 8";
visible = "1";
helpTag = "0";
showFill = "1";
displayEnergy = "1";
showFrame = "1";
fillColor = "0.000000 0.000000 0.000000 0.500000";
frameColor = "0.000000 1.000000 0.000000 0.000000";
damageFillColor = "0.000000 0.000000 0.800000 1.000000";
pulseRate = "1000";
pulseThreshold = "0.5";
value = "1";
};
new GuiBitmapCtrl() {
profile = "GuiDefaultProfile";
horizSizing = "right";
vertSizing = "top";
position = "50 299";
extent = "32 172";
minExtent = "8 8";
visible = "1";
helpTag = "0";
bitmap = "./healthBar";
wrap = "0";
};
};
//--- OBJECT WRITE END ---

View File

@@ -0,0 +1,148 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
//
// Copyright (c) 2001 GarageGames.Com
//-----------------------------------------------------------------------------
//--- OBJECT WRITE BEGIN ---
new GuiControl(PlayerListGui) {
profile = "GuiModelessDialogProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
helpTag = "0";
noCursor = "1";
new GuiBitmapBorderCtrl() {
profile = "GuiBitmapBorderProfile";
horizSizing = "center";
vertSizing = "center";
position = "241 119";
extent = "158 242";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiBitmapCtrl() {
profile = "HudScrollProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "5 5";
extent = "147 231";
minExtent = "8 8";
visible = "1";
helpTag = "0";
bitmap = "./hudfill.png";
wrap = "0";
new GuiTextCtrl() {
profile = "HudTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "37 2";
extent = "76 20";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Score Board";
maxLength = "255";
};
new GuiScrollCtrl() {
profile = "HudScrollProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 24";
extent = "147 207";
minExtent = "8 8";
visible = "1";
helpTag = "0";
willFirstRespond = "1";
hScrollBar = "alwaysOff";
vScrollBar = "dynamic";
constantThumbHeight = "0";
childMargin = "0 0";
defaultLineHeight = "15";
new GuiTextListCtrl(PlayerListGuiList) {
profile = "HudTextProfile";
horizSizing = "width";
vertSizing = "height";
position = "1 1";
extent = "145 16";
minExtent = "8 8";
visible = "1";
helpTag = "0";
enumerate = "0";
resizeCell = "1";
columns = "0 120";
fitParentWidth = "1";
clipColumnText = "0";
};
};
};
};
};
//--- OBJECT WRITE END ---
function PlayerListGui::update(%this,%clientId,%name,%isSuperAdmin,%isAdmin,%isAI,%score)
{
// Build the row to display. The name can have ML control tags,
// including color and font. Since we're not using and
// ML control here, we need to strip them off.
%tag = %isSuperAdmin? "[Super]":
(%isAdmin? "[Admin]":
(%isAI? "[Bot]":
""));
%text = StripMLControlChars(%name) SPC %tag TAB %score;
// Update or add the player to the control
if (PlayerListGuiList.getRowNumById(%clientId) == -1)
PlayerListGuiList.addRow(%clientId, %text);
else
PlayerListGuiList.setRowById(%clientId, %text);
// Sorts by score
PlayerListGuiList.sortNumerical(1,false);
PlayerListGuiList.clearSelection();
}
function PlayerListGui::updateScore(%this,%clientId,%score)
{
%text = PlayerListGuiList.getRowTextById(%clientId);
%text = setField(%text,1,%score);
PlayerListGuiList.setRowById(%clientId, %text);
PlayerListGuiList.sortNumerical(1,false);
PlayerListGuiList.clearSelection();
}
function PlayerListGui::remove(%this,%clientId)
{
PlayerListGuiList.removeRowById(%clientId);
}
function PlayerListGui::toggle(%this)
{
if (%this.isAwake())
Canvas.popDialog(%this);
else
Canvas.pushDialog(%this);
}
function PlayerListGui::clear(%this)
{
// Override to clear the list.
PlayerListGuiList.clear();
}
function PlayerListGui::zeroScores(%this)
{
for (%i = 0; %i < PlayerListGuiList.rowCount(); %i++) {
%text = PlayerListGuiList.getRowText(%i);
%text = setField(%text,1,"0");
PlayerListGuiList.setRowById(PlayerListGuiList.getRowId(%i), %text);
}
PlayerListGuiList.clearSelection();
}

View File

@@ -0,0 +1,46 @@
//--- OBJECT WRITE BEGIN ---
new GuiControl(RemapDlg) {
profile = "GuiDialogProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiControl(OptRemapDlg) {
profile = "GuiWindowProfile";
horizSizing = "center";
vertSizing = "center";
position = "213 213";
extent = "243 64";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiTextCtrl(OptRemapText) {
profile = "GuiCenterTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "2 21";
extent = "99 20";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Re-bind control...";
maxLength = "255";
};
new GuiInputCtrl(OptRemapInputCtrl) {
profile = "GuiInputCtrlProfile";
horizSizing = "center";
vertSizing = "bottom";
position = "0 0";
extent = "64 64";
minExtent = "8 8";
visible = "1";
helpTag = "0";
};
};
};
//--- OBJECT WRITE END ---

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,218 @@
//--- OBJECT WRITE BEGIN ---
new GuiChunkedBitmapCtrl(startMissionGui) {
profile = "GuiContentProfile";
horizSizing = "width";
vertSizing = "height";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
bitmap = "./background";
useVariable = "0";
tile = "0";
helpTag = "0";
new GuiControl() {
profile = "GuiWindowProfile";
horizSizing = "center";
vertSizing = "center";
position = "92 86";
extent = "455 308";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "12 36";
extent = "72 18";
minExtent = "8 8";
visible = "1";
text = "Select Mission:";
maxLength = "255";
helpTag = "0";
};
new GuiCheckBoxCtrl(ML_isMultiplayer) {
profile = "GuiCheckBoxProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "155 272";
extent = "147 23";
minExtent = "8 8";
visible = "1";
variable = "pref::HostMultiPlayer";
text = "Host Multiplayer";
groupNum = "-1";
buttonType = "ToggleButton";
helpTag = "0";
maxLength = "255";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "320 271";
extent = "127 23";
minExtent = "8 8";
visible = "1";
command = "SM_StartMission();";
text = "Launch Mission!";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
new GuiScrollCtrl() {
profile = "GuiScrollProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "10 62";
extent = "436 200";
minExtent = "8 8";
visible = "1";
willFirstRespond = "1";
hScrollBar = "dynamic";
vScrollBar = "alwaysOn";
constantThumbHeight = "0";
childMargin = "0 0";
helpTag = "0";
defaultLineHeight = "15";
new GuiTextListCtrl(SM_missionList) {
profile = "GuiTextArrayProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "2 2";
extent = "414 16";
minExtent = "8 8";
visible = "1";
enumerate = "0";
resizeCell = "1";
columns = "0";
fitParentWidth = "1";
clipColumnText = "0";
helpTag = "0";
noDuplicates = "false";
};
};
new GuiTextEditCtrl() {
profile = "GuiTextEditProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "98 15";
extent = "134 18";
minExtent = "8 8";
visible = "1";
variable = "pref::Player::Name";
maxLength = "255";
historySize = "0";
password = "0";
tabComplete = "0";
sinkAllKeyEvents = "0";
helpTag = "0";
};
new GuiTextCtrl() {
profile = "GuiTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "12 11";
extent = "63 18";
minExtent = "8 8";
visible = "1";
text = "Player Name:";
maxLength = "255";
helpTag = "0";
};
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "10 272";
extent = "127 23";
minExtent = "8 8";
visible = "1";
command = "Canvas.setContent(mainMenuGui);";
text = "<< Back";
groupNum = "-1";
buttonType = "PushButton";
helpTag = "0";
};
};
};
//--- OBJECT WRITE END ---
//----------------------------------------
function SM_StartMission()
{
%id = SM_missionList.getSelectedId();
%mission = getField(SM_missionList.getRowTextById(%id), 1);
if ($pref::HostMultiPlayer)
%serverType = "MultiPlayer";
else
%serverType = "SinglePlayer";
createServer(%serverType, %mission);
%conn = new GameConnection(ServerConnection);
RootGroup.add(ServerConnection);
%conn.setConnectArgs($pref::Player::Name);
%conn.setJoinPassword($Client::Password);
%conn.connectLocal();
}
//----------------------------------------
function startMissionGui::onWake()
{
SM_missionList.clear();
%i = 0;
for(%file = findFirstFile($Server::MissionFileSpec); %file !$= ""; %file = findNextFile($Server::MissionFileSpec))
if (strStr(%file, "/CVS/") == -1)
SM_missionList.addRow(%i++, getMissionDisplayName(%file) @ "\t" @ %file );
SM_missionList.sort(0);
SM_missionList.setSelectedRow(0);
SM_missionList.scrollVisible(0);
}
//----------------------------------------
function getMissionDisplayName( %missionFile )
{
%file = new FileObject();
%MissionInfoObject = "";
if ( %file.openForRead( %missionFile ) ) {
%inInfoBlock = false;
while ( !%file.isEOF() ) {
%line = %file.readLine();
%line = trim( %line );
if( %line $= "new ScriptObject(MissionInfo) {" )
%inInfoBlock = true;
else if( %inInfoBlock && %line $= "};" ) {
%inInfoBlock = false;
%MissionInfoObject = %MissionInfoObject @ %line;
break;
}
if( %inInfoBlock )
%MissionInfoObject = %MissionInfoObject @ %line @ " ";
}
%file.close();
}
%MissionInfoObject = "%MissionInfoObject = " @ %MissionInfoObject;
eval( %MissionInfoObject );
%file.delete();
if( %MissionInfoObject.name !$= "" )
return %MissionInfoObject.name;
else
return fileBase(%missionFile);
}

View File

@@ -0,0 +1,9 @@
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
// A temporary hack until we can find a better way to initialize
// material properties.
exec( "./terrains/grassland/propertyMap.cs" );
exec( "./terrains/scorched/propertyMap.cs" );

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

View File

@@ -0,0 +1,271 @@
{
"classname" "worldspawn"
"classname" "worldspawn"
"min_pixels" "250"
"geometry_scale" "32.0"
"light_geometry_scale" "32.0"
"ambient_color" "0 0 0"
"emergency_ambient_color" "0 0 0"
"mapversion" "220"
"wad" "\gg2\textures.wad"
{
( -64 256 8 ) ( 64 256 8 ) ( 64 -256 8 ) FLRFILLER3_01 [ 1 0 0 64 ] [ 0 -1 0 64 ] 0 1.2 0.2
( -64 -256 0 ) ( 64 -256 0 ) ( 64 256 0 ) FLRFILLER3_01 [ 1 0 0 64 ] [ 0 -1 0 64 ] 0 1.2 0.2
( -64 256 8 ) ( -64 -256 8 ) ( -64 -256 0 ) FLRFILLER3_01 [ 0 1 0 64 ] [ 0 0 -1 67.3333 ] 0 0.2 1.2
( 64 256 0 ) ( 64 -256 0 ) ( 64 -256 8 ) FLRFILLER3_01 [ 0 1 0 64 ] [ 0 0 -1 67.3333 ] 0 0.2 1.2
( 64 256 8 ) ( -64 256 8 ) ( -64 256 0 ) FLRFILLER3_01 [ 1 0 0 64 ] [ 0 0 -1 84 ] 0 1.2 0.2
( 64 -256 0 ) ( -64 -256 0 ) ( -64 -256 8 ) FLRFILLER3_01 [ 1 0 0 64 ] [ 0 0 -1 84 ] 0 1.2 0.2
}
{
( -84 -160 -6 ) ( -89 -156 -12 ) ( -94 -152 -14 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 1 1
( 96 -158 -12 ) ( 94 -160 -6 ) ( 96 -158 -1 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 1 1
( 84 -144 -6 ) ( -96 -144 -6 ) ( -94 -147 -12 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
( 94 -146 -12 ) ( -94 -147 -12 ) ( -94 -152 -14 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 -1 0 -128 ] 0 1 1
( 96 -152 -14 ) ( -94 -152 -14 ) ( -89 -156 -12 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 -1 0 -128 ] 0 1 1
( 96 -158 -12 ) ( -89 -156 -12 ) ( -84 -160 -6 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
( 94 -160 -6 ) ( -84 -160 -6 ) ( -89 -156 -1 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
( 96 -158 -1 ) ( -89 -156 -1 ) ( -87 -152 0 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 -1 0 -128 ] 0 1 1
( 96 -152 0 ) ( -87 -152 0 ) ( -94 -147 -1 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 -1 0 -128 ] 0 1 1
( 94 -146 -1 ) ( -94 -147 -1 ) ( -96 -144 -6 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
}
{
( -94 -120 -6 ) ( -96 -118 -12 ) ( -96 -112 -14 ) WALNOGROOVE [ 0 1 0 24 ] [ 0 0 -1 -48 ] 0 1 1
( 94 -118 -12 ) ( 91 -120 -6 ) ( 94 -118 -1 ) WALNOGROOVE [ 0 1 0 24 ] [ 0 0 -1 -48 ] 0 1 1
( 94 -104 -6 ) ( -94 -104 -6 ) ( -96 -108 -12 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 0 -1 -48 ] 0 1 1
( 96 -107 -12 ) ( -96 -108 -12 ) ( -96 -112 -14 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 -1 0 -24 ] 0 1 1
( 96 -112 -14 ) ( -96 -112 -14 ) ( -96 -118 -12 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 -1 0 -24 ] 0 1 1
( 94 -118 -12 ) ( -96 -118 -12 ) ( -94 -120 -6 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 0 -1 -48 ] 0 1 1
( 91 -120 -6 ) ( -94 -120 -6 ) ( -96 -118 -1 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 0 -1 -48 ] 0 1 1
( 94 -118 -1 ) ( -96 -118 -1 ) ( -94 -112 0 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 -1 0 -24 ] 0 1 1
( 96 -112 0 ) ( -94 -112 0 ) ( -96 -108 -1 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 -1 0 -24 ] 0 1 1
( 96 -107 -1 ) ( -96 -108 -1 ) ( -94 -104 -6 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 0 -1 -48 ] 0 1 1
}
{
( -84 -126 -248 ) ( -88 -134 -248 ) ( -84 -142 -248 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 -1 0 -128 ] 0 0.2 0.2
( -76 -122 -56 ) ( -68 -126 -56 ) ( -64 -134 -56 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 -1 0 -128 ] 0 0.2 0.2
( -76 -122 -248 ) ( -68 -126 -248 ) ( -68 -126 -56 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -68 -126 -248 ) ( -64 -134 -248 ) ( -64 -134 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -64 -134 -248 ) ( -68 -142 -248 ) ( -68 -142 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -68 -142 -248 ) ( -76 -146 -248 ) ( -76 -146 -56 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -76 -146 -248 ) ( -84 -142 -248 ) ( -84 -142 -56 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -84 -142 -248 ) ( -88 -134 -248 ) ( -88 -134 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -88 -134 -248 ) ( -84 -126 -248 ) ( -84 -126 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -84 -126 -248 ) ( -76 -122 -248 ) ( -76 -122 -56 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 0 -1 -128 ] 0 0.2 0.2
}
{
( -84 -126 -56 ) ( -88 -134 -56 ) ( -84 -142 -56 ) MTLPILRTOP [ 1 0 0 -123 ] [ 0 -1 0 -46.7143 ] 0 0.5 0.7
( -76 -122 8 ) ( -68 -126 8 ) ( -64 -134 8 ) MTLPILRTOP [ 1 0 0 -123 ] [ 0 -1 0 -46.7143 ] 0 0.5 0.7
( -76 -122 -56 ) ( -68 -126 -56 ) ( -68 -126 8 ) MTLPILRTOP [ 1 0 0 -155 ] [ 0 0 -1 -102 ] 0 0.5 0.7
( -68 -126 -56 ) ( -64 -134 -56 ) ( -64 -134 8 ) MTLPILRTOP [ 0 1 0 77 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -64 -134 -56 ) ( -68 -142 -56 ) ( -68 -142 8 ) MTLPILRTOP [ 0 1 0 77 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -68 -142 -56 ) ( -76 -146 -56 ) ( -76 -146 8 ) MTLPILRTOP [ 1 0 0 -142 ] [ 0 0 -1 -102 ] 0 0.5 0.7
( -76 -146 -56 ) ( -84 -142 -56 ) ( -84 -142 8 ) MTLPILRTOP [ 1 0 0 -123 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
( -84 -142 -56 ) ( -88 -134 -56 ) ( -88 -134 8 ) MTLPILRTOP [ 0 1 0 77 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -88 -134 -56 ) ( -84 -126 -56 ) ( -84 -126 8 ) MTLPILRTOP [ 0 1 0 77 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -84 -126 -56 ) ( -76 -122 -56 ) ( -76 -122 8 ) MTLPILRTOP [ 1 0 0 -123 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
}
{
( -84 -126 8 ) ( -88 -134 8 ) ( -84 -142 8 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 -1 0 -87 ] 0 0.2 0.2
( -76 -122 72 ) ( -68 -126 72 ) ( -64 -134 72 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 -1 0 -87 ] 0 0.2 0.2
( -76 -122 8 ) ( -68 -126 8 ) ( -68 -126 72 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -68 -126 8 ) ( -64 -134 8 ) ( -64 -134 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -64 -134 8 ) ( -68 -142 8 ) ( -68 -142 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -68 -142 8 ) ( -76 -146 8 ) ( -76 -146 72 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -76 -146 8 ) ( -84 -142 8 ) ( -84 -142 72 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -84 -142 8 ) ( -88 -134 8 ) ( -88 -134 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -88 -134 8 ) ( -84 -126 8 ) ( -84 -126 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -84 -126 8 ) ( -76 -122 8 ) ( -76 -122 72 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 0 -1 -87 ] 0 0.2 0.2
}
{
( -74 -196 -14 ) ( -78 -196 -14 ) ( -78 -72 -14 ) MTLPILRBOTTOM [ 1 0 0 62 ] [ 0 -1 0 -127 ] 0 0.3 0.3
( -78 -156 -28 ) ( -78 -112 -28 ) ( -78 -72 -14 ) MTL [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 1 1
( -74 -156 -28 ) ( -74 -196 -14 ) ( -74 -72 -14 ) MTL [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 1 1
( -74 -112 -28 ) ( -74 -72 -14 ) ( -78 -72 -14 ) MTL [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
( -74 -156 -28 ) ( -78 -156 -28 ) ( -78 -196 -14 ) MTL [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
( -74 -112 -28 ) ( -78 -112 -28 ) ( -78 -156 -28 ) FLRFILLER3_01 [ 1 0 0 -98 ] [ 0 -1 0 -128 ] 0 1 1
}
{
( -74 -112 -28 ) ( -74 -156 -28 ) ( -78 -156 -28 ) FLRFILLER3_01 [ 1 0 0 -6 ] [ 0 -1 0 -4 ] 0 1 1
( -78 -134 -96 ) ( -78 -112 -28 ) ( -78 -156 -28 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -69 ] 0 1 1
( -74 -112 -28 ) ( -74 -134 -96 ) ( -74 -156 -28 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -69 ] 0 1 1
( -78 -112 -28 ) ( -78 -134 -96 ) ( -74 -134 -96 ) MTL [ 1 0 0 -6 ] [ 0 0 -1 -69 ] 0 1 1
( -78 -134 -96 ) ( -78 -156 -28 ) ( -74 -156 -28 ) MTL [ 1 0 0 -6 ] [ 0 0 -1 -69 ] 0 1 1
}
{
( 68 -122 -248 ) ( 64 -130 -248 ) ( 68 -138 -248 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 -1 0 -4 ] 0 0.2 0.2
( 76 -118 -56 ) ( 84 -122 -56 ) ( 88 -130 -56 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 -1 0 -4 ] 0 0.2 0.2
( 76 -118 -248 ) ( 84 -122 -248 ) ( 84 -122 -56 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 84 -122 -248 ) ( 88 -130 -248 ) ( 88 -130 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 88 -130 -248 ) ( 84 -138 -248 ) ( 84 -138 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 84 -138 -248 ) ( 76 -142 -248 ) ( 76 -142 -56 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 76 -142 -248 ) ( 68 -138 -248 ) ( 68 -138 -56 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 68 -138 -248 ) ( 64 -130 -248 ) ( 64 -130 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 64 -130 -248 ) ( 68 -122 -248 ) ( 68 -122 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 68 -122 -248 ) ( 76 -118 -248 ) ( 76 -118 -56 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
}
{
( 68 -122 -56 ) ( 64 -130 -56 ) ( 68 -138 -56 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 -1 0 -46.7143 ] 0 0.5 0.7
( 76 -118 8 ) ( 84 -122 8 ) ( 88 -130 8 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 -1 0 -46.7143 ] 0 0.5 0.7
( 76 -118 -56 ) ( 84 -122 -56 ) ( 84 -122 8 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
( 84 -122 -56 ) ( 88 -130 -56 ) ( 88 -130 8 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 88 -130 -56 ) ( 84 -138 -56 ) ( 84 -138 8 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 84 -138 -56 ) ( 76 -142 -56 ) ( 76 -142 8 ) MTLPILRTOP [ 1 0 0 -129 ] [ 0 0 -1 -102 ] 0 0.5 0.7
( 76 -142 -56 ) ( 68 -138 -56 ) ( 68 -138 8 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
( 68 -138 -56 ) ( 64 -130 -56 ) ( 64 -130 8 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 64 -130 -56 ) ( 68 -122 -56 ) ( 68 -122 8 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 68 -122 -56 ) ( 76 -118 -56 ) ( 76 -118 8 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
}
{
( 68 -122 8 ) ( 64 -130 8 ) ( 68 -138 8 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 -1 0 -12 ] 0 0.2 0.2
( 76 -118 72 ) ( 84 -122 72 ) ( 88 -130 72 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 -1 0 -12 ] 0 0.2 0.2
( 76 -118 8 ) ( 84 -122 8 ) ( 84 -122 72 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 84 -122 8 ) ( 88 -130 8 ) ( 88 -130 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 88 -130 8 ) ( 84 -138 8 ) ( 84 -138 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 84 -138 8 ) ( 76 -142 8 ) ( 76 -142 72 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 76 -142 8 ) ( 68 -138 8 ) ( 68 -138 72 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 68 -138 8 ) ( 64 -130 8 ) ( 64 -130 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 64 -130 8 ) ( 68 -122 8 ) ( 68 -122 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 68 -122 8 ) ( 76 -118 8 ) ( 76 -118 72 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
}
{
( 78 -68 -14 ) ( 78 -192 -14 ) ( 74 -192 -14 ) MTLPILRBOTTOM [ 1 0 0 -60 ] [ 0 -1 0 -113 ] 0 0.3 0.3
( 74 -192 -14 ) ( 74 -154 -30 ) ( 74 -106 -30 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -86 ] 0 1 1
( 78 -106 -30 ) ( 78 -154 -30 ) ( 78 -192 -14 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -86 ] 0 1 1
( 74 -106 -30 ) ( 78 -106 -30 ) ( 78 -68 -14 ) MTL [ 1 0 0 -6 ] [ 0 0 -1 -86 ] 0 1 1
( 78 -192 -14 ) ( 78 -154 -30 ) ( 74 -154 -30 ) MTLPILRBOTTOM [ 1 0 0 -21.3333 ] [ 0 0 -1 -86 ] 0 0.3 0.3
( 78 -154 -30 ) ( 78 -106 -30 ) ( 74 -106 -30 ) FLRFILLER3_01 [ 1 0 0 -6 ] [ 0 -1 0 -4 ] 0 1 1
}
{
( 74 -106 -30 ) ( 78 -106 -30 ) ( 78 -154 -30 ) FLRFILLER3_01 [ 1 0 0 -42 ] [ 0 -1 0 -8 ] 0 1 1
( 74 -154 -30 ) ( 74 -130 -78 ) ( 74 -106 -30 ) MTL [ 0 1 0 8 ] [ 0 0 -1 -27 ] 0 1 1
( 78 -154 -30 ) ( 78 -106 -30 ) ( 78 -130 -78 ) MTL [ 0 1 0 8 ] [ 0 0 -1 -27 ] 0 1 1
( 78 -106 -30 ) ( 74 -106 -30 ) ( 74 -130 -78 ) MTL [ 1 0 0 -42 ] [ 0 0 -1 -27 ] 0 1 1
( 78 -130 -78 ) ( 74 -130 -78 ) ( 74 -154 -30 ) MTLPILRBOTTOM [ 1 0 0 -57.3333 ] [ 0 0 -1 -27 ] 0 0.3 0.3
}
{
( -84 98 -6 ) ( -89 102 -12 ) ( -94 106 -14 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -124 ] 0 1 1
( 96 100 -12 ) ( 94 98 -6 ) ( 96 100 -1 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -124 ] 0 1 1
( 84 114 -6 ) ( -96 114 -6 ) ( -94 111 -12 ) WALNOGROOVE [ 1 0 0 -65 ] [ 0 0 -1 -124 ] 0 1 1
( 94 112 -12 ) ( -94 111 -12 ) ( -94 106 -14 ) WALNOGROOVE [ 1 0 0 -65 ] [ 0 -1 0 -128 ] 0 1 1
( 96 106 -14 ) ( -94 106 -14 ) ( -89 102 -12 ) WALNOGROOVE [ 1 0 0 -65 ] [ 0 -1 0 -128 ] 0 1 1
( 96 100 -12 ) ( -89 102 -12 ) ( -84 98 -6 ) WALNOGROOVE [ 1 0 0 -65 ] [ 0 0 -1 -124 ] 0 1 1
( 94 98 -6 ) ( -84 98 -6 ) ( -89 102 -1 ) WALNOGROOVE [ 1 0 0 -65 ] [ 0 0 -1 -124 ] 0 1 1
( 96 100 -1 ) ( -89 102 -1 ) ( -87 106 0 ) WALNOGROOVE [ 1 0 0 -65 ] [ 0 -1 0 -128 ] 0 1 1
( 96 106 0 ) ( -87 106 0 ) ( -94 111 -1 ) WALNOGROOVE [ 1 0 0 -65 ] [ 0 -1 0 -128 ] 0 1 1
( 94 112 -1 ) ( -94 111 -1 ) ( -96 114 -6 ) WALNOGROOVE [ 1 0 0 -65 ] [ 0 0 -1 -124 ] 0 1 1
}
{
( -94 138 -6 ) ( -96 140 -12 ) ( -96 146 -14 ) WALNOGROOVE [ 0 1 0 24 ] [ 0 0 -1 -44 ] 0 1 1
( 94 140 -12 ) ( 91 138 -6 ) ( 94 140 -1 ) WALNOGROOVE [ 0 1 0 24 ] [ 0 0 -1 -44 ] 0 1 1
( 94 154 -6 ) ( -94 154 -6 ) ( -96 150 -12 ) WALNOGROOVE [ 1 0 0 -33 ] [ 0 0 -1 -44 ] 0 1 1
( 96 151 -12 ) ( -96 150 -12 ) ( -96 146 -14 ) WALNOGROOVE [ 1 0 0 -33 ] [ 0 -1 0 -24 ] 0 1 1
( 96 146 -14 ) ( -96 146 -14 ) ( -96 140 -12 ) WALNOGROOVE [ 1 0 0 -33 ] [ 0 -1 0 -24 ] 0 1 1
( 94 140 -12 ) ( -96 140 -12 ) ( -94 138 -6 ) WALNOGROOVE [ 1 0 0 -33 ] [ 0 0 -1 -44 ] 0 1 1
( 91 138 -6 ) ( -94 138 -6 ) ( -96 140 -1 ) WALNOGROOVE [ 1 0 0 -33 ] [ 0 0 -1 -44 ] 0 1 1
( 94 140 -1 ) ( -96 140 -1 ) ( -94 146 0 ) WALNOGROOVE [ 1 0 0 -33 ] [ 0 -1 0 -24 ] 0 1 1
( 96 146 0 ) ( -94 146 0 ) ( -96 150 -1 ) WALNOGROOVE [ 1 0 0 -33 ] [ 0 -1 0 -24 ] 0 1 1
( 96 151 -1 ) ( -96 150 -1 ) ( -94 154 -6 ) WALNOGROOVE [ 1 0 0 -33 ] [ 0 0 -1 -44 ] 0 1 1
}
{
( -84 134 -248 ) ( -88 126 -248 ) ( -84 118 -248 ) WALNOGROOVE [ 1 0 0 -69 ] [ 0 -1 0 -128 ] 0 0.2 0.2
( -76 138 -56 ) ( -68 134 -56 ) ( -64 126 -56 ) WALNOGROOVE [ 1 0 0 -69 ] [ 0 -1 0 -128 ] 0 0.2 0.2
( -76 138 -248 ) ( -68 134 -248 ) ( -68 134 -56 ) WALNOGROOVE [ 1 0 0 -69 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( -68 134 -248 ) ( -64 126 -248 ) ( -64 126 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( -64 126 -248 ) ( -68 118 -248 ) ( -68 118 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( -68 118 -248 ) ( -76 114 -248 ) ( -76 114 -56 ) WALNOGROOVE [ 1 0 0 -69 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( -76 114 -248 ) ( -84 118 -248 ) ( -84 118 -56 ) WALNOGROOVE [ 1 0 0 -69 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( -84 118 -248 ) ( -88 126 -248 ) ( -88 126 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( -88 126 -248 ) ( -84 134 -248 ) ( -84 134 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( -84 134 -248 ) ( -76 138 -248 ) ( -76 138 -56 ) WALNOGROOVE [ 1 0 0 -69 ] [ 0 0 -1 -108 ] 0 0.2 0.2
}
{
( -84 134 -56 ) ( -88 126 -56 ) ( -84 118 -56 ) MTLPILRTOP [ 1 0 0 -57 ] [ 0 -1 0 -65 ] 0 0.5 0.7
( -76 138 8 ) ( -68 134 8 ) ( -64 126 8 ) MTLPILRTOP [ 1 0 0 -57 ] [ 0 -1 0 -65 ] 0 0.5 0.7
( -76 138 -56 ) ( -68 134 -56 ) ( -68 134 8 ) MTLPILRTOP [ 1 0 0 -75 ] [ 0 0 -1 -41 ] 0 0.5 0.7
( -68 134 -56 ) ( -64 126 -56 ) ( -64 126 8 ) MTLPILRTOP [ 0 1 0 70 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -64 126 -56 ) ( -68 118 -56 ) ( -68 118 8 ) MTLPILRTOP [ 0 1 0 70 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -68 118 -56 ) ( -76 114 -56 ) ( -76 114 8 ) MTLPILRTOP [ 1 0 0 -74 ] [ 0 0 -1 -41 ] 0 0.5 0.7
( -76 114 -56 ) ( -84 118 -56 ) ( -84 118 8 ) MTLPILRTOP [ 1 0 0 -132 ] [ 0 0 -1 -41 ] 0 0.5 0.7
( -84 118 -56 ) ( -88 126 -56 ) ( -88 126 8 ) MTLPILRTOP [ 0 1 0 70 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -88 126 -56 ) ( -84 134 -56 ) ( -84 134 8 ) MTLPILRTOP [ 0 1 0 70 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -84 134 -56 ) ( -76 138 -56 ) ( -76 138 8 ) MTLPILRTOP [ 1 0 0 -3 ] [ 0 0 -1 -41 ] 0 0.5 0.7
}
{
( -84 134 8 ) ( -88 126 8 ) ( -84 118 8 ) WALNOGROOVE [ 1 0 0 -13 ] [ 0 -1 0 -87 ] 0 0.2 0.2
( -76 138 72 ) ( -68 134 72 ) ( -64 126 72 ) WALNOGROOVE [ 1 0 0 -13 ] [ 0 -1 0 -87 ] 0 0.2 0.2
( -76 138 8 ) ( -68 134 8 ) ( -68 134 72 ) WALNOGROOVE [ 1 0 0 -13 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( -68 134 8 ) ( -64 126 8 ) ( -64 126 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( -64 126 8 ) ( -68 118 8 ) ( -68 118 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( -68 118 8 ) ( -76 114 8 ) ( -76 114 72 ) WALNOGROOVE [ 1 0 0 -13 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( -76 114 8 ) ( -84 118 8 ) ( -84 118 72 ) WALNOGROOVE [ 1 0 0 -13 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( -84 118 8 ) ( -88 126 8 ) ( -88 126 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( -88 126 8 ) ( -84 134 8 ) ( -84 134 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( -84 134 8 ) ( -76 138 8 ) ( -76 138 72 ) WALNOGROOVE [ 1 0 0 -13 ] [ 0 0 -1 -67 ] 0 0.2 0.2
}
{
( -74 64 -14 ) ( -78 64 -14 ) ( -78 188 -14 ) MTLPILRBOTTOM [ 1 0 0 62 ] [ 0 -1 0 100 ] 0 0.3 0.3
( -78 104 -28 ) ( -78 148 -28 ) ( -78 188 -14 ) MTL [ 0 1 0 128 ] [ 0 0 -1 -124 ] 0 1 1
( -74 104 -28 ) ( -74 64 -14 ) ( -74 188 -14 ) MTL [ 0 1 0 128 ] [ 0 0 -1 -124 ] 0 1 1
( -74 148 -28 ) ( -74 188 -14 ) ( -78 188 -14 ) MTL [ 1 0 0 -65 ] [ 0 0 -1 -124 ] 0 1 1
( -74 104 -28 ) ( -78 104 -28 ) ( -78 64 -14 ) MTL [ 1 0 0 -65 ] [ 0 0 -1 -124 ] 0 1 1
( -74 148 -28 ) ( -78 148 -28 ) ( -78 104 -28 ) FLRFILLER3_01 [ 1 0 0 -65 ] [ 0 -1 0 -128 ] 0 1 1
}
{
( -74 148 -28 ) ( -74 104 -28 ) ( -78 104 -28 ) FLRFILLER3_01 [ 1 0 0 -101 ] [ 0 -1 0 -4 ] 0 1 1
( -78 126 -96 ) ( -78 148 -28 ) ( -78 104 -28 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -65 ] 0 1 1
( -74 148 -28 ) ( -74 126 -96 ) ( -74 104 -28 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -65 ] 0 1 1
( -78 148 -28 ) ( -78 126 -96 ) ( -74 126 -96 ) MTL [ 1 0 0 -101 ] [ 0 0 -1 -65 ] 0 1 1
( -78 126 -96 ) ( -78 104 -28 ) ( -74 104 -28 ) MTL [ 1 0 0 -101 ] [ 0 0 -1 -65 ] 0 1 1
}
{
( 68 134 -248 ) ( 64 126 -248 ) ( 68 118 -248 ) WALNOGROOVE [ 1 0 0 -105 ] [ 0 -1 0 -4 ] 0 0.2 0.2
( 76 138 -56 ) ( 84 134 -56 ) ( 88 126 -56 ) WALNOGROOVE [ 1 0 0 -105 ] [ 0 -1 0 -4 ] 0 0.2 0.2
( 76 138 -248 ) ( 84 134 -248 ) ( 84 134 -56 ) WALNOGROOVE [ 1 0 0 -105 ] [ 0 0 -1 -40 ] 0 0.2 0.2
( 84 134 -248 ) ( 88 126 -248 ) ( 88 126 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -40 ] 0 0.2 0.2
( 88 126 -248 ) ( 84 118 -248 ) ( 84 118 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -40 ] 0 0.2 0.2
( 84 118 -248 ) ( 76 114 -248 ) ( 76 114 -56 ) WALNOGROOVE [ 1 0 0 -105 ] [ 0 0 -1 -40 ] 0 0.2 0.2
( 76 114 -248 ) ( 68 118 -248 ) ( 68 118 -56 ) WALNOGROOVE [ 1 0 0 -105 ] [ 0 0 -1 -40 ] 0 0.2 0.2
( 68 118 -248 ) ( 64 126 -248 ) ( 64 126 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -40 ] 0 0.2 0.2
( 64 126 -248 ) ( 68 134 -248 ) ( 68 134 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -40 ] 0 0.2 0.2
( 68 134 -248 ) ( 76 138 -248 ) ( 76 138 -56 ) WALNOGROOVE [ 1 0 0 -105 ] [ 0 0 -1 -40 ] 0 0.2 0.2
}
{
( 68 134 -56 ) ( 64 126 -56 ) ( 68 118 -56 ) MTLPILRTOP [ 1 0 0 -58 ] [ 0 -1 0 -65 ] 0 0.5 0.7
( 76 138 8 ) ( 84 134 8 ) ( 88 126 8 ) MTLPILRTOP [ 1 0 0 -58 ] [ 0 -1 0 -65 ] 0 0.5 0.7
( 76 138 -56 ) ( 84 134 -56 ) ( 84 134 8 ) MTLPILRTOP [ 1 0 0 -20 ] [ 0 0 -1 -66.5714 ] 0 0.5 0.7
( 84 134 -56 ) ( 88 126 -56 ) ( 88 126 8 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 88 126 -56 ) ( 84 118 -56 ) ( 84 118 8 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 84 118 -56 ) ( 76 114 -56 ) ( 76 114 8 ) MTLPILRTOP [ 1 0 0 -25 ] [ 0 0 -1 -40.5714 ] 0 0.5 0.7
( 76 114 -56 ) ( 68 118 -56 ) ( 68 118 8 ) MTLPILRTOP [ 1 0 0 -25 ] [ 0 0 -1 -40.5714 ] 0 0.5 0.7
( 68 118 -56 ) ( 64 126 -56 ) ( 64 126 8 ) MTLPILRTOP [ 0 1 0 70 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 64 126 -56 ) ( 68 134 -56 ) ( 68 134 8 ) MTLPILRTOP [ 0 1 0 70 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 68 134 -56 ) ( 76 138 -56 ) ( 76 138 8 ) MTLPILRTOP [ 1 0 0 -20 ] [ 0 0 -1 -66.5714 ] 0 0.5 0.7
}
{
( 68 134 8 ) ( 64 126 8 ) ( 68 118 8 ) WALNOGROOVE [ 1 0 0 -49 ] [ 0 -1 0 -12 ] 0 0.2 0.2
( 76 138 72 ) ( 84 134 72 ) ( 88 126 72 ) WALNOGROOVE [ 1 0 0 -49 ] [ 0 -1 0 -12 ] 0 0.2 0.2
( 76 138 8 ) ( 84 134 8 ) ( 84 134 72 ) WALNOGROOVE [ 1 0 0 -49 ] [ 0 0 -1 -104 ] 0 0.2 0.2
( 84 134 8 ) ( 88 126 8 ) ( 88 126 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -104 ] 0 0.2 0.2
( 88 126 8 ) ( 84 118 8 ) ( 84 118 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -104 ] 0 0.2 0.2
( 84 118 8 ) ( 76 114 8 ) ( 76 114 72 ) WALNOGROOVE [ 1 0 0 -49 ] [ 0 0 -1 -104 ] 0 0.2 0.2
( 76 114 8 ) ( 68 118 8 ) ( 68 118 72 ) WALNOGROOVE [ 1 0 0 -49 ] [ 0 0 -1 -104 ] 0 0.2 0.2
( 68 118 8 ) ( 64 126 8 ) ( 64 126 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -104 ] 0 0.2 0.2
( 64 126 8 ) ( 68 134 8 ) ( 68 134 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -104 ] 0 0.2 0.2
( 68 134 8 ) ( 76 138 8 ) ( 76 138 72 ) WALNOGROOVE [ 1 0 0 -49 ] [ 0 0 -1 -104 ] 0 0.2 0.2
}
{
( 78 188 -14 ) ( 78 64 -14 ) ( 74 64 -14 ) MTLPILRBOTTOM [ 1 0 0 -60 ] [ 0 -1 0 100 ] 0 0.3 0.3
( 74 64 -14 ) ( 74 102 -30 ) ( 74 150 -30 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -82 ] 0 1 1
( 78 150 -30 ) ( 78 102 -30 ) ( 78 64 -14 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -82 ] 0 1 1
( 74 150 -30 ) ( 78 150 -30 ) ( 78 188 -14 ) MTL [ 1 0 0 -101 ] [ 0 0 -1 -82 ] 0 1 1
( 78 64 -14 ) ( 78 102 -30 ) ( 74 102 -30 ) MTLPILRBOTTOM [ 1 0 0 -124.667 ] [ 0 0 -1 -72.6665 ] 0 0.3 0.3
( 78 102 -30 ) ( 78 150 -30 ) ( 74 150 -30 ) FLRFILLER3_01 [ 1 0 0 -101 ] [ 0 -1 0 -4 ] 0 1 1
}
{
( 74 150 -30 ) ( 78 150 -30 ) ( 78 102 -30 ) FLRFILLER3_01 [ 1 0 0 -9 ] [ 0 -1 0 -8 ] 0 1 1
( 74 102 -30 ) ( 74 126 -78 ) ( 74 150 -30 ) MTL [ 0 1 0 8 ] [ 0 0 -1 -23 ] 0 1 1
( 78 102 -30 ) ( 78 150 -30 ) ( 78 126 -78 ) MTL [ 0 1 0 8 ] [ 0 0 -1 -23 ] 0 1 1
( 78 150 -30 ) ( 74 150 -30 ) ( 74 126 -78 ) MTL [ 1 0 0 -9 ] [ 0 0 -1 -23 ] 0 1 1
( 78 126 -78 ) ( 74 126 -78 ) ( 74 102 -30 ) MTLPILRBOTTOM [ 1 0 0 -32.6666 ] [ 0 0 -1 -13.6665 ] 0 0.3 0.3
}
}

Binary file not shown.

View File

@@ -0,0 +1,145 @@
{
"classname" "worldspawn"
"classname" "worldspawn"
"min_pixels" "250"
"geometry_scale" "32.0"
"light_geometry_scale" "32.0"
"ambient_color" "0 0 0"
"emergency_ambient_color" "0 0 0"
"mapversion" "220"
"wad" "\gg2\textures.wad"
{
( -64 128 8 ) ( 64 128 8 ) ( 64 -128 8 ) FLRFILLER3_01 [ 1 0 0 64 ] [ 0 -1 0 64 ] 0 1.2 0.2
( -64 -128 0 ) ( 64 -128 0 ) ( 64 128 0 ) FLRFILLER3_01 [ 1 0 0 64 ] [ 0 -1 0 64 ] 0 1.2 0.2
( -64 128 8 ) ( -64 -128 8 ) ( -64 -128 0 ) FLRFILLER3_01 [ 0 1 0 64 ] [ 0 0 -1 67.3333 ] 0 0.2 1.2
( 64 128 0 ) ( 64 -128 0 ) ( 64 -128 8 ) FLRFILLER3_01 [ 0 1 0 64 ] [ 0 0 -1 67.3333 ] 0 0.2 1.2
( 64 128 8 ) ( -64 128 8 ) ( -64 128 0 ) FLRFILLER3_01 [ 1 0 0 64 ] [ 0 0 -1 84 ] 0 1.2 0.2
( 64 -128 0 ) ( -64 -128 0 ) ( -64 -128 8 ) FLRFILLER3_01 [ 1 0 0 64 ] [ 0 0 -1 84 ] 0 1.2 0.2
}
{
( -84 -32 -6 ) ( -89 -28 -12 ) ( -94 -24 -14 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 1 1
( 96 -30 -12 ) ( 94 -32 -6 ) ( 96 -30 -1 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 1 1
( 84 -16 -6 ) ( -96 -16 -6 ) ( -94 -19 -12 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
( 94 -18 -12 ) ( -94 -19 -12 ) ( -94 -24 -14 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 -1 0 -128 ] 0 1 1
( 96 -24 -14 ) ( -94 -24 -14 ) ( -89 -28 -12 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 -1 0 -128 ] 0 1 1
( 96 -30 -12 ) ( -89 -28 -12 ) ( -84 -32 -6 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
( 94 -32 -6 ) ( -84 -32 -6 ) ( -89 -28 -1 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
( 96 -30 -1 ) ( -89 -28 -1 ) ( -87 -24 0 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 -1 0 -128 ] 0 1 1
( 96 -24 0 ) ( -87 -24 0 ) ( -94 -19 -1 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 -1 0 -128 ] 0 1 1
( 94 -18 -1 ) ( -94 -19 -1 ) ( -96 -16 -6 ) WALNOGROOVE [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
}
{
( -94 8 -6 ) ( -96 10 -12 ) ( -96 16 -14 ) WALNOGROOVE [ 0 1 0 24 ] [ 0 0 -1 -48 ] 0 1 1
( 94 10 -12 ) ( 91 8 -6 ) ( 94 10 -1 ) WALNOGROOVE [ 0 1 0 24 ] [ 0 0 -1 -48 ] 0 1 1
( 94 24 -6 ) ( -94 24 -6 ) ( -96 20 -12 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 0 -1 -48 ] 0 1 1
( 96 21 -12 ) ( -96 20 -12 ) ( -96 16 -14 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 -1 0 -24 ] 0 1 1
( 96 16 -14 ) ( -96 16 -14 ) ( -96 10 -12 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 -1 0 -24 ] 0 1 1
( 94 10 -12 ) ( -96 10 -12 ) ( -94 8 -6 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 0 -1 -48 ] 0 1 1
( 91 8 -6 ) ( -94 8 -6 ) ( -96 10 -1 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 0 -1 -48 ] 0 1 1
( 94 10 -1 ) ( -96 10 -1 ) ( -94 16 0 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 -1 0 -24 ] 0 1 1
( 96 16 0 ) ( -94 16 0 ) ( -96 20 -1 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 -1 0 -24 ] 0 1 1
( 96 21 -1 ) ( -96 20 -1 ) ( -94 24 -6 ) WALNOGROOVE [ 1 0 0 -66 ] [ 0 0 -1 -48 ] 0 1 1
}
{
( -84 6 -248 ) ( -88 -2 -248 ) ( -84 -10 -248 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 -1 0 -128 ] 0 0.2 0.2
( -76 10 -56 ) ( -68 6 -56 ) ( -64 -2 -56 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 -1 0 -128 ] 0 0.2 0.2
( -76 10 -248 ) ( -68 6 -248 ) ( -68 6 -56 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -68 6 -248 ) ( -64 -2 -248 ) ( -64 -2 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -64 -2 -248 ) ( -68 -10 -248 ) ( -68 -10 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -68 -10 -248 ) ( -76 -14 -248 ) ( -76 -14 -56 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -76 -14 -248 ) ( -84 -10 -248 ) ( -84 -10 -56 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -84 -10 -248 ) ( -88 -2 -248 ) ( -88 -2 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -88 -2 -248 ) ( -84 6 -248 ) ( -84 6 -56 ) WALNOGROOVE [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 0.2 0.2
( -84 6 -248 ) ( -76 10 -248 ) ( -76 10 -56 ) WALNOGROOVE [ 1 0 0 -106 ] [ 0 0 -1 -128 ] 0 0.2 0.2
}
{
( -84 6 -56 ) ( -88 -2 -56 ) ( -84 -10 -56 ) MTLPILRTOP [ 1 0 0 -123 ] [ 0 -1 0 -46.7143 ] 0 0.5 0.7
( -76 10 8 ) ( -68 6 8 ) ( -64 -2 8 ) MTLPILRTOP [ 1 0 0 -123 ] [ 0 -1 0 -46.7143 ] 0 0.5 0.7
( -76 10 -56 ) ( -68 6 -56 ) ( -68 6 8 ) MTLPILRTOP [ 1 0 0 -139 ] [ 0 0 -1 -136 ] 0 0.5 0.7
( -68 6 -56 ) ( -64 -2 -56 ) ( -64 -2 8 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -64 -2 -56 ) ( -68 -10 -56 ) ( -68 -10 8 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -68 -10 -56 ) ( -76 -14 -56 ) ( -76 -14 8 ) MTLPILRTOP [ 1 0 0 -85 ] [ 0 0 -1 -102 ] 0 0.5 0.7
( -76 -14 -56 ) ( -84 -10 -56 ) ( -84 -10 8 ) MTLPILRTOP [ 1 0 0 -123 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
( -84 -10 -56 ) ( -88 -2 -56 ) ( -88 -2 8 ) MTLPILRTOP [ 0 1 0 70 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -88 -2 -56 ) ( -84 6 -56 ) ( -84 6 8 ) MTLPILRTOP [ 0 1 0 70 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -84 6 -56 ) ( -76 10 -56 ) ( -76 10 8 ) MTLPILRTOP [ 1 0 0 -123 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
}
{
( -84 6 8 ) ( -88 -2 8 ) ( -84 -10 8 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 -1 0 -87 ] 0 0.2 0.2
( -76 10 72 ) ( -68 6 72 ) ( -64 -2 72 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 -1 0 -87 ] 0 0.2 0.2
( -76 10 8 ) ( -68 6 8 ) ( -68 6 72 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -68 6 8 ) ( -64 -2 8 ) ( -64 -2 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -64 -2 8 ) ( -68 -10 8 ) ( -68 -10 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -68 -10 8 ) ( -76 -14 8 ) ( -76 -14 72 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -76 -14 8 ) ( -84 -10 8 ) ( -84 -10 72 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -84 -10 8 ) ( -88 -2 8 ) ( -88 -2 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -88 -2 8 ) ( -84 6 8 ) ( -84 6 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 -87 ] 0 0.2 0.2
( -84 6 8 ) ( -76 10 8 ) ( -76 10 72 ) WALNOGROOVE [ 1 0 0 -50 ] [ 0 0 -1 -87 ] 0 0.2 0.2
}
{
( -74 -64 -14 ) ( -78 -64 -14 ) ( -78 60 -14 ) MTLPILRBOTTOM [ 1 0 0 -66 ] [ 0 -1 0 -85 ] 0 0.3 0.3
( -78 -24 -28 ) ( -78 20 -28 ) ( -78 60 -14 ) MTL [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 1 1
( -74 -24 -28 ) ( -74 -64 -14 ) ( -74 60 -14 ) MTL [ 0 1 0 128 ] [ 0 0 -1 -128 ] 0 1 1
( -74 20 -28 ) ( -74 60 -14 ) ( -78 60 -14 ) MTL [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
( -74 -24 -28 ) ( -78 -24 -28 ) ( -78 -64 -14 ) MTL [ 1 0 0 -98 ] [ 0 0 -1 -128 ] 0 1 1
( -74 20 -28 ) ( -78 20 -28 ) ( -78 -24 -28 ) FLRFILLER3_01 [ 1 0 0 -98 ] [ 0 -1 0 -128 ] 0 1 1
}
{
( -74 20 -28 ) ( -74 -24 -28 ) ( -78 -24 -28 ) FLRFILLER3_01 [ 1 0 0 -6 ] [ 0 -1 0 -4 ] 0 1 1
( -78 -2 -96 ) ( -78 20 -28 ) ( -78 -24 -28 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -69 ] 0 1 1
( -74 20 -28 ) ( -74 -2 -96 ) ( -74 -24 -28 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -69 ] 0 1 1
( -78 20 -28 ) ( -78 -2 -96 ) ( -74 -2 -96 ) MTL [ 1 0 0 -6 ] [ 0 0 -1 -69 ] 0 1 1
( -78 -2 -96 ) ( -78 -24 -28 ) ( -74 -24 -28 ) MTL [ 1 0 0 -6 ] [ 0 0 -1 -69 ] 0 1 1
}
{
( 68 6 -248 ) ( 64 -2 -248 ) ( 68 -10 -248 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 -1 0 -4 ] 0 0.2 0.2
( 76 10 -56 ) ( 84 6 -56 ) ( 88 -2 -56 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 -1 0 -4 ] 0 0.2 0.2
( 76 10 -248 ) ( 84 6 -248 ) ( 84 6 -56 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 84 6 -248 ) ( 88 -2 -248 ) ( 88 -2 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 88 -2 -248 ) ( 84 -10 -248 ) ( 84 -10 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 84 -10 -248 ) ( 76 -14 -248 ) ( 76 -14 -56 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 76 -14 -248 ) ( 68 -10 -248 ) ( 68 -10 -56 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 68 -10 -248 ) ( 64 -2 -248 ) ( 64 -2 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 64 -2 -248 ) ( 68 6 -248 ) ( 68 6 -56 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 68 6 -248 ) ( 76 10 -248 ) ( 76 10 -56 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
}
{
( 68 6 -56 ) ( 64 -2 -56 ) ( 68 -10 -56 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 -1 0 -46.7143 ] 0 0.5 0.7
( 76 10 8 ) ( 84 6 8 ) ( 88 -2 8 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 -1 0 -46.7143 ] 0 0.5 0.7
( 76 10 -56 ) ( 84 6 -56 ) ( 84 6 8 ) MTLPILRTOP [ 1 0 0 -125 ] [ 0 0 -1 -102 ] 0 0.5 0.7
( 84 6 -56 ) ( 88 -2 -56 ) ( 88 -2 8 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 88 -2 -56 ) ( 84 -10 -56 ) ( 84 -10 8 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 84 -10 -56 ) ( 76 -14 -56 ) ( 76 -14 8 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
( 76 -14 -56 ) ( 68 -10 -56 ) ( 68 -10 8 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
( 68 -10 -56 ) ( 64 -2 -56 ) ( 64 -2 8 ) MTLPILRTOP [ 0 1 0 70 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 64 -2 -56 ) ( 68 6 -56 ) ( 68 6 8 ) MTLPILRTOP [ 0 1 0 70 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 68 6 -56 ) ( 76 10 -56 ) ( 76 10 8 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
}
{
( 68 6 8 ) ( 64 -2 8 ) ( 68 -10 8 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 -1 0 -12 ] 0 0.2 0.2
( 76 10 72 ) ( 84 6 72 ) ( 88 -2 72 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 -1 0 -12 ] 0 0.2 0.2
( 76 10 8 ) ( 84 6 8 ) ( 84 6 72 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 84 6 8 ) ( 88 -2 8 ) ( 88 -2 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 88 -2 8 ) ( 84 -10 8 ) ( 84 -10 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 84 -10 8 ) ( 76 -14 8 ) ( 76 -14 72 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 76 -14 8 ) ( 68 -10 8 ) ( 68 -10 72 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 68 -10 8 ) ( 64 -2 8 ) ( 64 -2 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 64 -2 8 ) ( 68 6 8 ) ( 68 6 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 68 6 8 ) ( 76 10 8 ) ( 76 10 72 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
}
{
( 78 60 -14 ) ( 78 -64 -14 ) ( 74 -64 -14 ) MTLPILRBOTTOM [ 1 0 0 -60 ] [ 0 -1 0 57 ] 0 0.3 0.3
( 74 -64 -14 ) ( 74 -26 -30 ) ( 74 22 -30 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -86 ] 0 1 1
( 78 22 -30 ) ( 78 -26 -30 ) ( 78 -64 -14 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -86 ] 0 1 1
( 74 22 -30 ) ( 78 22 -30 ) ( 78 60 -14 ) MTL [ 1 0 0 -6 ] [ 0 0 -1 -86 ] 0 1 1
( 78 -64 -14 ) ( 78 -26 -30 ) ( 74 -26 -30 ) MTLPILRBOTTOM [ 1 0 0 -21.3333 ] [ 0 0 -1 -86 ] 0 0.3 0.3
( 78 -26 -30 ) ( 78 22 -30 ) ( 74 22 -30 ) FLRFILLER3_01 [ 1 0 0 -6 ] [ 0 -1 0 -4 ] 0 1 1
}
{
( 74 22 -30 ) ( 78 22 -30 ) ( 78 -26 -30 ) FLRFILLER3_01 [ 1 0 0 -42 ] [ 0 -1 0 -8 ] 0 1 1
( 74 -26 -30 ) ( 74 -2 -78 ) ( 74 22 -30 ) MTL [ 0 1 0 8 ] [ 0 0 -1 -27 ] 0 1 1
( 78 -26 -30 ) ( 78 22 -30 ) ( 78 -2 -78 ) MTL [ 0 1 0 8 ] [ 0 0 -1 -27 ] 0 1 1
( 78 22 -30 ) ( 74 22 -30 ) ( 74 -2 -78 ) MTL [ 1 0 0 -42 ] [ 0 0 -1 -27 ] 0 1 1
( 78 -2 -78 ) ( 74 -2 -78 ) ( 74 -26 -30 ) MTLPILRBOTTOM [ 1 0 0 -57.3333 ] [ 0 0 -1 -27 ] 0 0.3 0.3
}
}

Binary file not shown.

View File

@@ -0,0 +1,227 @@
{
"classname" "worldspawn"
"classname" "worldspawn"
"min_pixels" "250"
"geometry_scale" "32.0"
"light_geometry_scale" "32.0"
"ambient_color" "0 0 0"
"emergency_ambient_color" "0 0 0"
"mapversion" "220"
"mapversion" "220"
"wad" "\home\projects\torque\example\fps\data\interiors\test\textures.wad;\home\projects\torque\example\fps\data\interiors\evil1\textures.wad;\home\projects\torque\example\fps\data\interiors\demo\badlands.wad;\home\projects\torque\example\demo1\data\interiors\textures.wad"
{
( -128 -128 8 ) ( -128 128 8 ) ( 128 128 8 ) FLRFILLER3_01 [ 1 0 0 66 ] [ 0 -1 0 64 ] 0 1.3 0.2
( -128 128 0 ) ( -128 -128 0 ) ( 128 -128 0 ) FLRFILLER3_01 [ 1 0 0 61 ] [ 0 -1 0 64 ] 0 1.2 0.2
( -128 -128 0 ) ( -128 128 0 ) ( -128 128 8 ) FLRFILLER3_01 [ 0 1 0 -64 ] [ 0 0 -1 6 ] 0 0.2 1.2
( 128 128 0 ) ( 128 -128 0 ) ( 128 -128 8 ) FLRFILLER3_01 [ 0 1 0 -64 ] [ 0 0 -1 6 ] 0 0.2 1.2
( -128 128 0 ) ( 128 128 0 ) ( 128 128 8 ) FLRFILLER3_01 [ 1 0 0 66 ] [ 0 0 -1 166 ] 0 1.3 0.2
( 128 -128 0 ) ( -128 -128 0 ) ( -128 -128 8 ) FLRFILLER3_01 [ 1 0 0 66 ] [ 0 0 -1 166 ] 0 1.3 0.2
}
{
( -93 109 -240 ) ( -101 112 -240 ) ( -110 108 -240 ) WALNOGROOVE [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.2 0.2
( -110 108 -44 ) ( -101 112 -44 ) ( -93 109 -44 ) WALNOGROOVE [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 0.2 0.2
( -110 108 -240 ) ( -101 112 -240 ) ( -101 112 -44 ) WALNOGROOVE [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.2 0.2
( -101 112 -240 ) ( -93 109 -240 ) ( -93 109 -44 ) WALNOGROOVE [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.2 0.2
( -93 109 -240 ) ( -89 100 -240 ) ( -89 100 -44 ) WALNOGROOVE [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.2 0.2
( -89 100 -240 ) ( -92 92 -240 ) ( -92 92 -44 ) WALNOGROOVE [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.2 0.2
( -92 92 -240 ) ( -101 88 -240 ) ( -101 88 -44 ) WALNOGROOVE [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.2 0.2
( -101 88 -240 ) ( -109 91 -240 ) ( -109 91 -44 ) WALNOGROOVE [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 0.2 0.2
( -109 91 -240 ) ( -113 100 -240 ) ( -113 100 -44 ) WALNOGROOVE [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.2 0.2
( -113 100 -240 ) ( -110 108 -240 ) ( -110 108 -44 ) WALNOGROOVE [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 0.2 0.2
}
{
( -93 109 20 ) ( -101 111 20 ) ( -110 108 20 ) WALNOGROOVE [ 1 0 0 -72 ] [ 0 -1 0 41 ] 0 0.2 0.2
( -110 108 72 ) ( -101 111 72 ) ( -93 109 72 ) WALNOGROOVE [ 1 0 0 -72 ] [ 0 -1 0 41 ] 0 0.2 0.2
( -110 108 20 ) ( -101 111 20 ) ( -101 111 72 ) WALNOGROOVE [ 1 0 0 -72 ] [ 0 0 -1 41 ] 0 0.2 0.2
( -101 111 20 ) ( -93 109 20 ) ( -93 109 72 ) WALNOGROOVE [ 1 0 0 8 ] [ 0 0 -1 41 ] 0 0.2 0.2
( -93 109 20 ) ( -90 100 20 ) ( -90 100 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 41 ] 0 0.2 0.2
( -90 100 20 ) ( -92 92 20 ) ( -92 92 72 ) WALNOGROOVE [ 0 1 0 -72 ] [ 0 0 -1 41 ] 0 0.2 0.2
( -92 92 20 ) ( -101 89 20 ) ( -101 89 72 ) WALNOGROOVE [ 1 0 0 -72 ] [ 0 0 -1 41 ] 0 0.2 0.2
( -101 89 20 ) ( -109 91 20 ) ( -109 91 72 ) WALNOGROOVE [ 1 0 0 8 ] [ 0 0 -1 41 ] 0 0.2 0.2
( -109 91 20 ) ( -112 100 20 ) ( -112 100 72 ) WALNOGROOVE [ 0 1 0 8 ] [ 0 0 -1 41 ] 0 0.2 0.2
( -112 100 20 ) ( -110 108 20 ) ( -110 108 72 ) WALNOGROOVE [ 0 1 0 -72 ] [ 0 0 -1 41 ] 0 0.2 0.2
}
{
( -57 56 -2 ) ( -148 141 -2 ) ( -145 144 -2 ) MTLPILRBOTTOM [ 0.681998 0.731356 0 51 ] [ 0.731356 -0.681998 0 145 ] -47 0.3 0.3
( -118 114 -16 ) ( -148 141 -2 ) ( -57 56 -2 ) MTL [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
( -54 59 -2 ) ( -145 144 -2 ) ( -116 116 -16 ) MTL [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
( -145 144 -2 ) ( -148 141 -2 ) ( -118 114 -16 ) MTL [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
( -86 84 -16 ) ( -57 56 -2 ) ( -54 59 -2 ) MTL [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
( -84 86 -16 ) ( -116 116 -16 ) ( -118 114 -16 ) FLRFILLER3_01 [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
}
{
( -86 84 -16 ) ( -118 114 -16 ) ( -116 116 -16 ) FLRFILLER3_01 [ 1 0 0 -36 ] [ 0 -1 0 -4 ] 0 1 1
( -102 99 -84 ) ( -118 114 -16 ) ( -86 84 -16 ) MTL [ 1 0 0 4 ] [ 0 0 -1 -69 ] 0 1 1
( -84 86 -16 ) ( -116 116 -16 ) ( -100 101 -84 ) MTL [ 1 0 0 4 ] [ 0 0 -1 -69 ] 0 1 1
( -100 101 -84 ) ( -116 116 -16 ) ( -118 114 -16 ) MTL [ 0 1 0 -36 ] [ 0 0 -1 -69 ] 0 1 1
( -102 99 -84 ) ( -86 84 -16 ) ( -84 86 -16 ) MTL [ 0 1 0 -36 ] [ 0 0 -1 -69 ] 0 1 1
}
{
( -111 -101 -240 ) ( -108 -110 -240 ) ( -100 -112 -240 ) WALNOGROOVE [ 1 0 0 -36 ] [ 0 -1 0 -4 ] 0 0.2 0.2
( -92 -92 -44 ) ( -89 -101 -44 ) ( -91 -109 -44 ) WALNOGROOVE [ 1 0 0 -36 ] [ 0 -1 0 -4 ] 0 0.2 0.2
( -92 -92 -240 ) ( -89 -101 -240 ) ( -89 -101 -44 ) WALNOGROOVE [ 0 1 0 -36 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( -89 -101 -240 ) ( -91 -109 -240 ) ( -91 -109 -44 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( -91 -109 -240 ) ( -100 -112 -240 ) ( -100 -112 -44 ) WALNOGROOVE [ 1 0 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( -100 -112 -240 ) ( -108 -110 -240 ) ( -108 -110 -44 ) WALNOGROOVE [ 1 0 0 -36 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( -108 -110 -240 ) ( -111 -101 -240 ) ( -111 -101 -44 ) WALNOGROOVE [ 0 1 0 -36 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( -111 -101 -240 ) ( -109 -93 -240 ) ( -109 -93 -44 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( -109 -93 -240 ) ( -100 -90 -240 ) ( -100 -90 -44 ) WALNOGROOVE [ 1 0 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( -100 -90 -240 ) ( -92 -92 -240 ) ( -92 -92 -44 ) WALNOGROOVE [ 1 0 0 -36 ] [ 0 0 -1 -60 ] 0 0.2 0.2
}
{
( -111 -101 20 ) ( -108 -110 20 ) ( -100 -112 20 ) WALNOGROOVE [ 1 0 0 -108 ] [ 0 -1 0 -12 ] 0 0.2 0.2
( -92 -92 72 ) ( -89 -101 72 ) ( -91 -109 72 ) WALNOGROOVE [ 1 0 0 -108 ] [ 0 -1 0 -12 ] 0 0.2 0.2
( -92 -92 20 ) ( -89 -101 20 ) ( -89 -101 72 ) WALNOGROOVE [ 0 1 0 -108 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( -89 -101 20 ) ( -91 -109 20 ) ( -91 -109 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( -91 -109 20 ) ( -100 -112 20 ) ( -100 -112 72 ) WALNOGROOVE [ 1 0 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( -100 -112 20 ) ( -108 -110 20 ) ( -108 -110 72 ) WALNOGROOVE [ 1 0 0 -108 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( -108 -110 20 ) ( -111 -101 20 ) ( -111 -101 72 ) WALNOGROOVE [ 0 1 0 -108 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( -111 -101 20 ) ( -109 -93 20 ) ( -109 -93 72 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( -109 -93 20 ) ( -100 -90 20 ) ( -100 -90 72 ) WALNOGROOVE [ 1 0 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( -100 -90 20 ) ( -92 -92 20 ) ( -92 -92 72 ) WALNOGROOVE [ 1 0 0 -108 ] [ 0 0 -1 -124 ] 0 0.2 0.2
}
{
( -143 -145 -2 ) ( -59 -55 -2 ) ( -56 -58 -2 ) MTLPILRBOTTOM [ 0.743145 -0.669131 0 -39 ] [ -0.669131 -0.743145 0 -4 ] 42 0.3 0.3
( -85 -82 -18 ) ( -59 -55 -2 ) ( -143 -145 -2 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -86 ] 0 1 1
( -140 -148 -2 ) ( -56 -58 -2 ) ( -82 -85 -18 ) MTL [ 0 1 0 4 ] [ 0 0 -1 -86 ] 0 1 1
( -56 -58 -2 ) ( -59 -55 -2 ) ( -85 -82 -18 ) MTL [ 1 0 0 -36 ] [ 0 -1 0 -86 ] 0 1 1
( -118 -117 -18 ) ( -143 -145 -2 ) ( -140 -148 -2 ) MTLPILRBOTTOM [ 0.866025 -0.5 0 110 ] [ -0.5 -0.866025 0 -122 ] 30 0.3 0.3
( -85 -82 -18 ) ( -118 -117 -18 ) ( -115 -120 -18 ) FLRFILLER3_01 [ 1 0 0 -36 ] [ 0 -1 0 -4 ] 0 1 1
}
{
( -118 -117 -18 ) ( -85 -82 -18 ) ( -82 -85 -18 ) FLRFILLER3_01 [ 1 0 0 -72 ] [ 0 -1 0 -8 ] 0 1 1
( -101 -100 -66 ) ( -85 -82 -18 ) ( -118 -117 -18 ) MTL [ 0 1 0 8 ] [ 0 0 -1 -27 ] 0 1 1
( -115 -120 -18 ) ( -82 -85 -18 ) ( -99 -102 -66 ) MTL [ 0 1 0 8 ] [ 0 0 -1 -27 ] 0 1 1
( -82 -85 -18 ) ( -85 -82 -18 ) ( -101 -100 -66 ) MTL [ 1 0 0 -72 ] [ 0 0 -1 -27 ] 0 1 1
( -101 -100 -66 ) ( -118 -117 -18 ) ( -115 -120 -18 ) MTLPILRBOTTOM [ 1 0 0 27 ] [ 0 0 -1 -85 ] 0 0.3 0.3
}
{
( 107 -94 -240 ) ( 99 -92 -240 ) ( 90 -95 -240 ) WALNOGROOVE [ 1 0 0 -60 ] [ 0 -1 0 -118 ] 0 0.2 0.2
( 90 -95 -44 ) ( 99 -92 -44 ) ( 107 -94 -44 ) WALNOGROOVE [ 1 0 0 -60 ] [ 0 -1 0 -118 ] 0 0.2 0.2
( 90 -95 -240 ) ( 99 -92 -240 ) ( 99 -92 -44 ) WALNOGROOVE [ 1 0 0 -60 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( 99 -92 -240 ) ( 107 -94 -240 ) ( 107 -94 -44 ) WALNOGROOVE [ 1 0 0 118 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( 107 -94 -240 ) ( 110 -103 -240 ) ( 110 -103 -44 ) WALNOGROOVE [ 0 1 0 118 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( 110 -103 -240 ) ( 108 -111 -240 ) ( 108 -111 -44 ) WALNOGROOVE [ 0 1 0 -60 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( 108 -111 -240 ) ( 99 -114 -240 ) ( 99 -114 -44 ) WALNOGROOVE [ 1 0 0 -60 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( 99 -114 -240 ) ( 91 -112 -240 ) ( 91 -112 -44 ) WALNOGROOVE [ 1 0 0 118 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( 91 -112 -240 ) ( 88 -103 -240 ) ( 88 -103 -44 ) WALNOGROOVE [ 0 1 0 118 ] [ 0 0 -1 -108 ] 0 0.2 0.2
( 88 -103 -240 ) ( 90 -95 -240 ) ( 90 -95 -44 ) WALNOGROOVE [ 0 1 0 -60 ] [ 0 0 -1 -108 ] 0 0.2 0.2
}
{
( 107 -94 20 ) ( 99 -92 20 ) ( 90 -95 20 ) WALNOGROOVE [ 1 0 0 -4 ] [ 0 -1 0 -77 ] 0 0.2 0.2
( 90 -95 72 ) ( 99 -92 72 ) ( 107 -94 72 ) WALNOGROOVE [ 1 0 0 -4 ] [ 0 -1 0 -77 ] 0 0.2 0.2
( 90 -95 20 ) ( 99 -92 20 ) ( 99 -92 72 ) WALNOGROOVE [ 1 0 0 -4 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( 99 -92 20 ) ( 107 -94 20 ) ( 107 -94 72 ) WALNOGROOVE [ 1 0 0 126 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( 107 -94 20 ) ( 110 -103 20 ) ( 110 -103 72 ) WALNOGROOVE [ 0 1 0 126 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( 110 -103 20 ) ( 108 -111 20 ) ( 108 -111 72 ) WALNOGROOVE [ 0 1 0 -4 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( 108 -111 20 ) ( 99 -114 20 ) ( 99 -114 72 ) WALNOGROOVE [ 1 0 0 -4 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( 99 -114 20 ) ( 91 -112 20 ) ( 91 -112 72 ) WALNOGROOVE [ 1 0 0 126 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( 91 -112 20 ) ( 88 -103 20 ) ( 88 -103 72 ) WALNOGROOVE [ 0 1 0 126 ] [ 0 0 -1 -67 ] 0 0.2 0.2
( 88 -103 20 ) ( 90 -95 20 ) ( 90 -95 72 ) WALNOGROOVE [ 0 1 0 -4 ] [ 0 0 -1 -67 ] 0 0.2 0.2
}
{
( 142 -148 -2 ) ( 53 -62 -2 ) ( 55 -59 -2 ) MTLPILRBOTTOM [ -0.694662 -0.719339 0 49 ] [ -0.719339 0.694662 0 -122 ] 134 0.3 0.3
( 82 -89 -16 ) ( 53 -62 -2 ) ( 142 -148 -2 ) MTL [ 1 0 0 126 ] [ 0 0 -1 -124 ] 0 1 1
( 145 -144 -2 ) ( 55 -59 -2 ) ( 84 -86 -16 ) MTL [ 1 0 0 126 ] [ 0 0 -1 -124 ] 0 1 1
( 55 -59 -2 ) ( 53 -62 -2 ) ( 82 -89 -16 ) MTL [ 1 0 0 -12 ] [ 0 -1 0 -124 ] 0 1 1
( 114 -120 -16 ) ( 142 -148 -2 ) ( 145 -144 -2 ) MTL [ 1 0 0 -12 ] [ 0 -1 0 -124 ] 0 1 1
( 116 -117 -16 ) ( 84 -86 -16 ) ( 82 -89 -16 ) FLRFILLER3_01 [ 1 0 0 -12 ] [ 0 -1 0 -126 ] 0 1 1
}
{
( 114 -120 -16 ) ( 82 -89 -16 ) ( 85 -86 -16 ) FLRFILLER3_01 [ 1 0 0 -48 ] [ 0 -1 0 -2 ] 0 1 1
( 98 -104 -84 ) ( 82 -89 -16 ) ( 114 -120 -16 ) MTL [ 1 0 0 2 ] [ 0 0 -1 -65 ] 0 1 1
( 116 -117 -16 ) ( 85 -86 -16 ) ( 100 -102 -83 ) MTL [ 1 0 0 2 ] [ 0 0 -1 -65 ] 0 1 1
( 85 -86 -16 ) ( 82 -89 -16 ) ( 98 -104 -84 ) MTL [ 0 1 0 -48 ] [ 0 0 -1 -65 ] 0 1 1
( 98 -104 -84 ) ( 114 -120 -16 ) ( 116 -117 -16 ) MTL [ 0 1 0 -48 ] [ 0 0 -1 -65 ] 0 1 1
}
{
( 89 99 -240 ) ( 91 91 -240 ) ( 100 88 -240 ) WALNOGROOVE [ 1 0 0 -64 ] [ 0 -1 0 -108 ] 0 0.2 0.2
( 109 107 -44 ) ( 111 99 -44 ) ( 108 90 -44 ) WALNOGROOVE [ 1 0 0 -64 ] [ 0 -1 0 -108 ] 0 0.2 0.2
( 109 107 -240 ) ( 111 99 -240 ) ( 111 99 -44 ) WALNOGROOVE [ 0 1 0 -64 ] [ 0 0 -1 -88 ] 0 0.2 0.2
( 111 99 -240 ) ( 108 90 -240 ) ( 108 90 -44 ) WALNOGROOVE [ 0 1 0 108 ] [ 0 0 -1 -88 ] 0 0.2 0.2
( 108 90 -240 ) ( 100 88 -240 ) ( 100 88 -44 ) WALNOGROOVE [ 1 0 0 108 ] [ 0 0 -1 -88 ] 0 0.2 0.2
( 100 88 -240 ) ( 91 91 -240 ) ( 91 91 -44 ) WALNOGROOVE [ 1 0 0 -64 ] [ 0 0 -1 -88 ] 0 0.2 0.2
( 91 91 -240 ) ( 89 99 -240 ) ( 89 99 -44 ) WALNOGROOVE [ 0 1 0 -64 ] [ 0 0 -1 -88 ] 0 0.2 0.2
( 89 99 -240 ) ( 92 108 -240 ) ( 92 108 -44 ) WALNOGROOVE [ 0 1 0 108 ] [ 0 0 -1 -88 ] 0 0.2 0.2
( 92 108 -240 ) ( 100 110 -240 ) ( 100 110 -44 ) WALNOGROOVE [ 1 0 0 108 ] [ 0 0 -1 -88 ] 0 0.2 0.2
( 100 110 -240 ) ( 109 107 -240 ) ( 109 107 -44 ) WALNOGROOVE [ 1 0 0 -64 ] [ 0 0 -1 -88 ] 0 0.2 0.2
}
{
( 89 99 20 ) ( 91 91 20 ) ( 100 88 20 ) WALNOGROOVE [ 1 0 0 -8 ] [ 0 -1 0 -67 ] 0 0.2 0.2
( 109 107 72 ) ( 111 99 72 ) ( 108 90 72 ) WALNOGROOVE [ 1 0 0 -8 ] [ 0 -1 0 -67 ] 0 0.2 0.2
( 109 107 20 ) ( 111 99 20 ) ( 111 99 72 ) WALNOGROOVE [ 0 1 0 -8 ] [ 0 0 -1 -47 ] 0 0.2 0.2
( 111 99 20 ) ( 108 90 20 ) ( 108 90 72 ) WALNOGROOVE [ 0 1 0 116 ] [ 0 0 -1 -47 ] 0 0.2 0.2
( 108 90 20 ) ( 100 88 20 ) ( 100 88 72 ) WALNOGROOVE [ 1 0 0 116 ] [ 0 0 -1 -47 ] 0 0.2 0.2
( 100 88 20 ) ( 91 91 20 ) ( 91 91 72 ) WALNOGROOVE [ 1 0 0 -8 ] [ 0 0 -1 -47 ] 0 0.2 0.2
( 91 91 20 ) ( 89 99 20 ) ( 89 99 72 ) WALNOGROOVE [ 0 1 0 -8 ] [ 0 0 -1 -47 ] 0 0.2 0.2
( 89 99 20 ) ( 92 108 20 ) ( 92 108 72 ) WALNOGROOVE [ 0 1 0 116 ] [ 0 0 -1 -47 ] 0 0.2 0.2
( 92 108 20 ) ( 100 110 20 ) ( 100 110 72 ) WALNOGROOVE [ 1 0 0 116 ] [ 0 0 -1 -47 ] 0 0.2 0.2
( 100 110 20 ) ( 109 107 20 ) ( 109 107 72 ) WALNOGROOVE [ 1 0 0 -8 ] [ 0 0 -1 -47 ] 0 0.2 0.2
}
{
( 51 61 -2 ) ( 144 142 -2 ) ( 147 139 -2 ) MTLPILRBOTTOM [ 0.681998 -0.731354 0 77 ] [ -0.731354 -0.681998 0 -118 ] 47 0.3 0.3
( 115 115 -16 ) ( 144 142 -2 ) ( 51 61 -2 ) MTL [ 1 0 0 124 ] [ 0 0 -1 -120 ] 0 1 1
( 56 56 -2 ) ( 147 139 -2 ) ( 117 113 -16 ) MTL [ 1 0 0 124 ] [ 0 0 -1 -120 ] 0 1 1
( 147 139 -2 ) ( 144 142 -2 ) ( 115 115 -16 ) MTL [ 1 0 0 -64 ] [ 0 -1 0 -120 ] 0 1 1
( 82 86 -16 ) ( 51 61 -2 ) ( 56 56 -2 ) MTL [ 1 0 0 -64 ] [ 0 -1 0 -120 ] 0 1 1
( 115 115 -16 ) ( 82 86 -16 ) ( 85 83 -16 ) FLRFILLER3_01 [ 1 0 0 -64 ] [ 0 -1 0 -124 ] 0 1 1
}
{
( 118 112 -16 ) ( 85 83 -16 ) ( 82 86 -16 ) FLRFILLER3_01 [ 1 0 0 -100 ] [ 0 -1 0 -128 ] 0 1 1
( 99 100 -84 ) ( 115 115 -16 ) ( 82 86 -16 ) MTL [ 1 0 0 128 ] [ 0 0 -1 -61 ] 0 1 1
( 85 83 -16 ) ( 118 112 -16 ) ( 101 98 -84 ) MTL [ 1 0 0 128 ] [ 0 0 -1 -61 ] 0 1 1
( 118 112 -16 ) ( 115 115 -16 ) ( 99 100 -84 ) MTL [ 0 1 0 -100 ] [ 0 0 -1 -61 ] 0 1 1
( 99 100 -84 ) ( 82 86 -16 ) ( 85 83 -16 ) MTL [ 0 1 0 -100 ] [ 0 0 -1 -61 ] 0 1 1
}
}
{
"classname" "detail"
{
( -93 109 -44 ) ( -101 111 -44 ) ( -110 108 -44 ) MTLPILRTOP [ 1 0 0 73 ] [ 0 -1 0 63 ] 0 0.5 0.7
( -110 108 20 ) ( -101 111 20 ) ( -93 109 20 ) MTLPILRTOP [ 1 0 0 73 ] [ 0 -1 0 63 ] 0 0.5 0.7
( -110 108 -44 ) ( -101 111 -44 ) ( -101 111 20 ) MTLPILRTOP [ 1 0 0 73 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -101 111 -44 ) ( -93 109 -44 ) ( -93 109 20 ) MTLPILRTOP [ 1 0 0 73 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -93 109 -44 ) ( -90 100 -44 ) ( -90 100 20 ) MTLPILRTOP [ 0 1 0 73 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -90 100 -44 ) ( -92 92 -44 ) ( -92 92 20 ) MTLPILRTOP [ 0 1 0 73 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -92 92 -44 ) ( -101 89 -44 ) ( -101 89 20 ) MTLPILRTOP [ 1 0 0 73 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -101 89 -44 ) ( -109 91 -44 ) ( -109 91 20 ) MTLPILRTOP [ 1 0 0 73 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -109 91 -44 ) ( -112 100 -44 ) ( -112 100 20 ) MTLPILRTOP [ 0 1 0 73 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -112 100 -44 ) ( -110 108 -44 ) ( -110 108 20 ) MTLPILRTOP [ 0 1 0 73 ] [ 0 0 -1 63 ] 0 0.5 0.7
}
{
( -111 -101 -44 ) ( -108 -110 -44 ) ( -100 -112 -44 ) MTLPILRTOP [ 1 0 0 -184 ] [ 0 -1 0 63 ] 0 0.5 0.7
( -92 -92 20 ) ( -89 -101 20 ) ( -91 -109 20 ) MTLPILRTOP [ 1 0 0 -184 ] [ 0 -1 0 63 ] 0 0.5 0.7
( -92 -92 -44 ) ( -89 -101 -44 ) ( -89 -101 20 ) MTLPILRTOP [ 0 1 0 -184 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -89 -101 -44 ) ( -91 -109 -44 ) ( -91 -109 20 ) MTLPILRTOP [ 0 1 0 -184 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -91 -109 -44 ) ( -100 -112 -44 ) ( -100 -112 20 ) MTLPILRTOP [ 1 0 0 -184 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -100 -112 -44 ) ( -108 -110 -44 ) ( -108 -110 20 ) MTLPILRTOP [ 1 0 0 -184 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -108 -110 -44 ) ( -111 -101 -44 ) ( -111 -101 20 ) MTLPILRTOP [ 0 1 0 -184 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -111 -101 -44 ) ( -109 -93 -44 ) ( -109 -93 20 ) MTLPILRTOP [ 0 1 0 -184 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -109 -93 -44 ) ( -100 -90 -44 ) ( -100 -90 20 ) MTLPILRTOP [ 1 0 0 -184 ] [ 0 0 -1 63 ] 0 0.5 0.7
( -100 -90 -44 ) ( -92 -92 -44 ) ( -92 -92 20 ) MTLPILRTOP [ 1 0 0 -184 ] [ 0 0 -1 63 ] 0 0.5 0.7
}
{
( 89 99 -44 ) ( 91 91 -44 ) ( 100 88 -44 ) MTLPILRTOP [ 1 0 0 -55 ] [ 0 -1 0 -41 ] 0 0.5 0.7
( 109 107 20 ) ( 111 99 20 ) ( 108 90 20 ) MTLPILRTOP [ 1 0 0 -55 ] [ 0 -1 0 -41 ] 0 0.5 0.7
( 109 107 -44 ) ( 111 99 -44 ) ( 111 99 20 ) MTLPILRTOP [ 0 1 0 -55 ] [ 0 0 -1 -71.8572 ] 0 0.5 0.7
( 111 99 -44 ) ( 108 90 -44 ) ( 108 90 20 ) MTLPILRTOP [ 0 1 0 65 ] [ 0 0 -1 -71.8572 ] 0 0.5 0.7
( 108 90 -44 ) ( 100 88 -44 ) ( 100 88 20 ) MTLPILRTOP [ 1 0 0 65 ] [ 0 0 -1 -71.8572 ] 0 0.5 0.7
( 100 88 -44 ) ( 91 91 -44 ) ( 91 91 20 ) MTLPILRTOP [ 1 0 0 -55 ] [ 0 0 -1 -71.8572 ] 0 0.5 0.7
( 91 91 -44 ) ( 89 99 -44 ) ( 89 99 20 ) MTLPILRTOP [ 0 1 0 -55 ] [ 0 0 -1 -71.8572 ] 0 0.5 0.7
( 89 99 -44 ) ( 92 108 -44 ) ( 92 108 20 ) MTLPILRTOP [ 0 1 0 65 ] [ 0 0 -1 -71.8572 ] 0 0.5 0.7
( 92 108 -44 ) ( 100 110 -44 ) ( 100 110 20 ) MTLPILRTOP [ 1 0 0 65 ] [ 0 0 -1 -71.8572 ] 0 0.5 0.7
( 100 110 -44 ) ( 109 107 -44 ) ( 109 107 20 ) MTLPILRTOP [ 1 0 0 -55 ] [ 0 0 -1 -71.8572 ] 0 0.5 0.7
}
{
( 107 -94 -44 ) ( 99 -92 -44 ) ( 90 -95 -44 ) MTLPILRTOP [ 1 0 0 -79 ] [ 0 -1 0 -80.4286 ] 0 0.5 0.7
( 90 -95 20 ) ( 99 -92 20 ) ( 107 -94 20 ) MTLPILRTOP [ 1 0 0 -79 ] [ 0 -1 0 -80.4286 ] 0 0.5 0.7
( 90 -95 -44 ) ( 99 -92 -44 ) ( 99 -92 20 ) MTLPILRTOP [ 1 0 0 -79 ] [ 0 0 -1 -4.42859 ] 0 0.5 0.7
( 99 -92 -44 ) ( 107 -94 -44 ) ( 107 -94 20 ) MTLPILRTOP [ 1 0 0 69 ] [ 0 0 -1 -4.42859 ] 0 0.5 0.7
( 107 -94 -44 ) ( 110 -103 -44 ) ( 110 -103 20 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 -4.42859 ] 0 0.5 0.7
( 110 -103 -44 ) ( 108 -111 -44 ) ( 108 -111 20 ) MTLPILRTOP [ 0 1 0 -79 ] [ 0 0 -1 -4.42859 ] 0 0.5 0.7
( 108 -111 -44 ) ( 99 -114 -44 ) ( 99 -114 20 ) MTLPILRTOP [ 1 0 0 -79 ] [ 0 0 -1 -4.42859 ] 0 0.5 0.7
( 99 -114 -44 ) ( 91 -112 -44 ) ( 91 -112 20 ) MTLPILRTOP [ 1 0 0 69 ] [ 0 0 -1 -4.42859 ] 0 0.5 0.7
( 91 -112 -44 ) ( 88 -103 -44 ) ( 88 -103 20 ) MTLPILRTOP [ 0 1 0 69 ] [ 0 0 -1 -4.42859 ] 0 0.5 0.7
( 88 -103 -44 ) ( 90 -95 -44 ) ( 90 -95 20 ) MTLPILRTOP [ 0 1 0 -79 ] [ 0 0 -1 -4.42859 ] 0 0.5 0.7
}
}

Binary file not shown.

View File

@@ -0,0 +1,47 @@
{
"classname" "worldspawn"
"classname" "worldspawn"
"min_pixels" "250"
"geometry_scale" "32.0"
"light_geometry_scale" "32.0"
"ambient_color" "0 0 0"
"emergency_ambient_color" "0 0 0"
"mapversion" "220"
"wad" "\gg2\textures.wad"
{
( -12 12 -576 ) ( -16 4 -576 ) ( -12 -4 -576 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 -1 0 -4 ] 0 0.2 0.2
( -4 16 -64 ) ( 4 12 -64 ) ( 8 4 -64 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 -1 0 -4 ] 0 0.2 0.2
( -4 16 -576 ) ( 4 12 -576 ) ( 4 12 -64 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 4 12 -576 ) ( 8 4 -576 ) ( 8 4 -64 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 8 4 -576 ) ( 4 -4 -576 ) ( 4 -4 -64 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( 4 -4 -576 ) ( -4 -8 -576 ) ( -4 -8 -64 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( -4 -8 -576 ) ( -12 -4 -576 ) ( -12 -4 -64 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( -12 -4 -576 ) ( -16 4 -576 ) ( -16 4 -64 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( -16 4 -576 ) ( -12 12 -576 ) ( -12 12 -64 ) WALNOGROOVE [ 0 1 0 4 ] [ 0 0 -1 -60 ] 0 0.2 0.2
( -12 12 -576 ) ( -4 16 -576 ) ( -4 16 -64 ) WALNOGROOVE [ 1 0 0 -14 ] [ 0 0 -1 -60 ] 0 0.2 0.2
}
{
( -12 12 -64 ) ( -16 4 -64 ) ( -12 -4 -64 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 -1 0 -46.7143 ] 0 0.5 0.7
( -4 16 0 ) ( 4 12 0 ) ( 8 4 0 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 -1 0 -46.7143 ] 0 0.5 0.7
( -4 16 -64 ) ( 4 12 -64 ) ( 4 12 0 ) MTLPILRTOP [ 1 0 0 -125 ] [ 0 0 -1 -102 ] 0 0.5 0.7
( 4 12 -64 ) ( 8 4 -64 ) ( 8 4 0 ) MTLPILRTOP [ 0 1 0 78 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 8 4 -64 ) ( 4 -4 -64 ) ( 4 -4 0 ) MTLPILRTOP [ 0 1 0 94 ] [ 0 0 -1 12 ] 0 0.5 0.7
( 4 -4 -64 ) ( -4 -8 -64 ) ( -4 -8 0 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
( -4 -8 -64 ) ( -12 -4 -64 ) ( -12 -4 0 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
( -12 -4 -64 ) ( -16 4 -64 ) ( -16 4 0 ) MTLPILRTOP [ 0 1 0 35 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -16 4 -64 ) ( -12 12 -64 ) ( -12 12 0 ) MTLPILRTOP [ 0 1 0 78 ] [ 0 0 -1 12 ] 0 0.5 0.7
( -12 12 -64 ) ( -4 16 -64 ) ( -4 16 0 ) MTLPILRTOP [ 1 0 0 -124 ] [ 0 0 -1 -101.571 ] 0 0.5 0.7
}
{
( -12 12 0 ) ( -16 4 0 ) ( -12 -4 0 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 -1 0 -12 ] 0 0.2 0.2
( -4 16 64 ) ( 4 12 64 ) ( 8 4 64 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 -1 0 -12 ] 0 0.2 0.2
( -4 16 0 ) ( 4 12 0 ) ( 4 12 64 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 4 12 0 ) ( 8 4 0 ) ( 8 4 64 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 8 4 0 ) ( 4 -4 0 ) ( 4 -4 64 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( 4 -4 0 ) ( -4 -8 0 ) ( -4 -8 64 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( -4 -8 0 ) ( -12 -4 0 ) ( -12 -4 64 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( -12 -4 0 ) ( -16 4 0 ) ( -16 4 64 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( -16 4 0 ) ( -12 12 0 ) ( -12 12 64 ) WALNOGROOVE [ 0 1 0 12 ] [ 0 0 -1 -124 ] 0 0.2 0.2
( -12 12 0 ) ( -4 16 0 ) ( -4 16 64 ) WALNOGROOVE [ 1 0 0 -86 ] [ 0 0 -1 -124 ] 0 0.2 0.2
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 891 B

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,813 @@
// This map has been written by QuArK - Quake Army Knife, QuArK 6.3
// It is a map for the game Torque.
// For more information see QuArK's Home Page : http://www.planetquake.com/quark
// Entity 0
// worldspawn
{
"classname" "worldspawn"
"detail_number" "2"
"min_pixels" "40"
"geometry_scale" "32.0"
"light_geometry_scale" "16.0"
"ambient_color" "0 0 0"
"emergency_ambient_color" "0 0 0"
"mapversion" "220"
"oldstyle_lighting" "0"
"rad_subdivision_u" "4"
"rad_subdivision_v" "4"
"rad_arealight_multiplier" "100000"
"rad_pointlight_multiplier" "1.0"
"rad_convergence" "1.0"
"rad_iteration_limiter" "1024"
"rad_directlight_only" "0"
"rad_use_nusselts" "0"
"rad_ambientterm" "0"
"rad_adaptive_degradation" "1"
"rad_adaptive_threshold" "15"
"rad_adaptive_max_x" "128"
"rad_adaptive_max_y" "128"
"rad_defaultreflectivity" ".38 .38 .38"
"rad_defaultemissioncolor" "0.0 0.0 0.0"
"rad_defaultemissionintensity" "0.0"
"rad_octree_threshold" "50000"
"rad_octree_minnoderadius" "5.0"
"rad_octree_maxtreedepth" "50"
"rad_bsp_gaussian" "8"
"rad_bsp_searchrange" "5"
"rad_lightmap_gamma" "1.0"
"rad_lightmap_width" "256"
"rad_lightmap_height" "256"
// Brush 0
// poly:p[1]
{
( -308 -346 8 ) ( -176 348 8 ) ( -308 348 8 ) thatch [ 1.00000 0.00000 0.00000 240.00000 ] [ 0.00000 -1.00000 0.00000 -400.00000 ] 0 1.00000 -1.00000
( -308 2 208 ) ( -176 -346 8 ) ( -308 -346 8 ) thatch [ 1.00000 0.00000 0.00000 -110.59998 ] [ 0.00000 1.00000 0.00000 -502.14516 ] 0 0.50000 -0.43351
( -308 2 208 ) ( -176 348 8 ) ( -44 348 8 ) thatch [ -1.00000 0.00000 0.00000 110.59998 ] [ 0.00000 -1.00000 0.00000 0.63650 ] 0 0.50000 -0.43288
( -308 -112 72 ) ( -308 -112 200 ) ( -308 -240 72 ) cottage_detail [ 0.00000 -1.00000 0.00000 127.31935 ] [ 0.00000 0.00000 1.00000 -0.84720 ] 0 2.64453 -2.71484
( 316 -112 72 ) ( 316 -112 200 ) ( 316 16 72 ) cottage_detail [ 0.00000 1.00000 0.00000 125.32596 ] [ 0.00000 0.00000 1.00000 -2.34760 ] 0 2.54297 -2.68359
}
// Brush 1
// n-prism:p[2]
{
( -6.03756 430 -40.50000 ) ( -6.03756 430 -39.50000 ) ( -308.89746 302.01553 -40.50000 ) concrete [ -1.00000 0.00000 0.00000 -2.55170 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.36609 -0.00781
( -308.89746 302.01553 -40.50000 ) ( -308.89746 302.01553 -39.50000 ) ( -431.98096 -4.05714 -40.50000 ) concrete [ 0.00000 -1.00000 0.00000 126.30329 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.39119 -0.00781
( -431.98096 -4.05714 -40.50000 ) ( -431.98096 -4.05714 -39.50000 ) ( -303.18750 -308.92474 -40.50000 ) concrete [ 0.00000 -1.00000 0.00000 -1.70341 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.38178 -0.00781
( -303.18750 -308.92474 -40.50000 ) ( -303.18750 -308.92474 -39.50000 ) ( 2.03756 -434 -40.50000 ) concrete [ 1.00000 0.00000 0.00000 127.14552 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.38457 -0.00781
( 2.03756 -434 -40.50000 ) ( 2.03756 -434 -39.50000 ) ( 304.89746 -306.01553 -40.50000 ) concrete [ 1.00000 0.00000 0.00000 -0.86115 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.36609 -0.00781
( 304.89746 -306.01553 -40.50000 ) ( 304.89746 -306.01553 -39.50000 ) ( 427.98096 0.05714 -40.50000 ) concrete [ 0.00000 1.00000 0.00000 127.97610 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.39119 -0.00781
( 427.98096 0.05714 -40.50000 ) ( 427.98096 0.05714 -39.50000 ) ( 299.18750 304.92474 -40.50000 ) concrete [ 0.00000 1.00000 0.00000 -0.02399 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.38178 -0.00781
( 299.18750 304.92474 -40.50000 ) ( 299.18750 304.92474 -39.50000 ) ( -6.03756 430 -40.50000 ) concrete [ -1.00000 0.00000 0.00000 125.46807 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.38457 -0.00781
( -429.17389 -304.39999 -40.50000 ) ( -427.94339 -436.05713 -40.50000 ) ( -298.13208 -303.77304 -40.50000 ) concrete [ 0.99999 0.00478 0.00000 421.97177 ] [ 0.00935 -0.99996 0.00000 293.93505 ] 0 1.02378 -1.02862
( -427.94339 -436.05713 8 ) ( -429.17389 -304.39999 8 ) ( -296.90155 -435.43021 8 ) concrete [ 0.99999 0.00478 0.00000 421.97176 ] [ -0.00935 0.99996 0.00000 -421.93508 ] 0 1.02378 -1.02862
}
// Brush 2
// roof:g[3] -> prism-slice:p[1]
{
( -308 280 16 ) ( -442 0 16 ) ( -408 0 16 ) thatch [ 0.70711 -0.70711 0.00000 640.00006 ] [ -0.70711 -0.70711 0.00000 639.99989 ] 0 0.50000 -0.50000
( -308 280 16 ) ( -408 0 16 ) ( -308 0 56 ) thatch [ 0.33634 0.94174 0.00000 345.00131 ] [ 0.96069 -0.27763 0.00000 -793.43158 ] 0 0.50000 -0.46034
( -308 0 56 ) ( -408 0 16 ) ( -442 0 16 ) thatch [ 1.00000 0.00000 0.00000 966.39997 ] [ 0.19612 0.00000 0.98058 32.63372 ] 0 0.50000 -0.50000
( -302 280 16 ) ( -302 0 56 ) ( -302 0 63.85714 ) thatch [ 0.00000 1.00000 0.00000 -49.11285 ] [ 0.00000 -0.14834 0.98894 32.35775 ] 0 0.50000 -0.50000
( -308 284 16 ) ( -308 0 63.85714 ) ( -442 0 16 ) thatch [ -0.42672 -0.90439 0.00000 -267.80139 ] [ 0.86702 -0.49827 0.00000 -874.03136 ] 0 0.50000 -0.46526
}
// Brush 3
// roof:g[3] -> prism-slice:p[2]
{
( -308 -280 16 ) ( -408 0 16 ) ( -442.38437 0 15.86273 ) thatch [ 0.42808 0.90374 0.00000 480.27819 ] [ 0.90374 -0.42809 0.00000 -721.73688 ] 0 0.50000 -0.50000
( -308 -280 16 ) ( -308 0 56 ) ( -408 0 16 ) thatch [ -0.33634 0.94174 0.00000 23.48408 ] [ 0.91921 0.39376 0.00000 -810.24734 ] 0 0.50000 -0.46034
( -301.98843 -280.00156 16.01084 ) ( -302.00259 -0.00155 63.86293 ) ( -301.98843 -0.00155 56.01084 ) thatch [ 0.00000 1.00000 0.00000 608.47658 ] [ 0.00000 0.19612 0.98058 -220.64377 ] 0 0.50000 -0.50000
( -308 0 56 ) ( -442.38437 0 15.86273 ) ( -408 0 16 ) thatch [ -1.00000 0.00000 0.00000 -652.98687 ] [ 0.14834 0.00000 0.98894 35.05452 ] 0 0.50000 -0.50000
( -308 -292 16 ) ( -442.38437 0 15.86273 ) ( -308.00342 0 63.85592 ) thatch [ 0.41708 -0.90887 0.00000 80.82618 ] [ 0.93953 0.34247 0.00000 -871.34205 ] 0 0.50000 -0.46556
}
// Brush 4
// roof:g[3] -> prism-slice:p[3]
{
( 436 0 16 ) ( 306 310 16 ) ( 306 288.78281 16 ) thatch [ -0.70711 -0.70711 0.00000 887.96195 ] [ 0.70711 -0.70711 0.00000 -132.46670 ] 0 0.50000 -0.50000
( 406 0 16 ) ( 306 288.78284 16 ) ( 306 0 55.76558 ) thatch [ -0.32722 0.94495 0.00000 58.04204 ] [ -0.96330 -0.26841 0.00000 -723.95227 ] 0 0.50000 -0.46099
( 436 0 16 ) ( 306 0 55.76558 ) ( 305.99997 0.00003 63.40933 ) thatch [ -1.00000 0.00000 0.00000 701.55762 ] [ -0.19612 0.00000 0.98058 32.63371 ] 0 0.50000 -0.50000
( 306 300 16.00002 ) ( 305.99997 0.00003 64.86497 ) ( 306 0 57.31020 ) thatch [ 0.00000 1.00000 0.00000 -558.57504 ] [ 0.00000 -0.14834 0.98894 -223.64206 ] 0 0.50000 -0.50000
( 436 0 16 ) ( 305.99997 0.00003 63.40933 ) ( 306 310 16 ) thatch [ 0.38673 -0.92219 0.00000 -231.75632 ] [ -0.88799 -0.45986 0.00000 -879.23815 ] 0 0.50000 -0.46517
}
// Brush 5
// roof:g[3] -> prism-slice:p[4]
{
( 406 0 16 ) ( 306 -285.98676 16.00195 ) ( 306 -310.70157 15.96365 ) thatch [ -0.43531 0.90028 0.00000 982.76639 ] [ -0.90028 -0.43532 0.00000 -442.35057 ] 0 0.50000 -0.50000
( 406 0 16 ) ( 306 0 55.85646 ) ( 306 -285.98676 16.00195 ) thatch [ 0.33006 0.94396 0.00000 34.14086 ] [ -0.92184 0.38758 0.00000 -807.37610 ] 0 0.50000 -0.46076
( 306 -297 16 ) ( 306 0 57.38930 ) ( 306 0 64.96645 ) thatch [ 0.00000 1.00000 0.00000 611.00096 ] [ 0.00000 0.19612 0.98058 35.35322 ] 0 0.50000 -0.50000
( 406 0 16 ) ( 306 0 63.51880 ) ( 306 0 55.85646 ) thatch [ 1.00000 0.00000 0.00000 -644.14452 ] [ -0.14834 0.00000 0.98894 35.05452 ] 0 0.50000 -0.50000
( 436 0 16 ) ( 306 -310.70157 15.96365 ) ( 306 0 63.51880 ) thatch [ -0.38623 -0.92240 0.00000 47.65576 ] [ -0.95056 0.31054 0.00000 -873.29576 ] 0 0.50000 -0.46504
}
// Brush 6
// roof:g[3] -> poly:p[5]
{
( 304 344 8 ) ( 422.25659 295.01651 8 ) ( 352.98349 462.25659 8 ) thatch [ -0.92388 -0.38268 0.00000 825.00498 ] [ -0.38268 0.92388 0.00000 402.95760 ] 0 0.50000 -0.50000
( 16 486 7 ) ( 17 15 200 ) ( 17 15 197 ) thatch [ 0.00000 1.00000 0.00000 -72.72506 ] [ 0.00000 0.00000 1.00000 248.00000 ] 0 0.50000 -0.50000
( 317 340 7 ) ( 17 15 192.80803 ) ( 17 15 200 ) thatch [ 0.00000 -1.00000 0.00000 20.58549 ] [ 0.00000 0.00000 1.00000 248.00000 ] 0 0.36740 -0.50000
( 317 343 7 ) ( 17 15 200 ) ( 16 486 7 ) thatch [ 0.90325 -0.42912 0.00000 -84.97954 ] [ -0.42912 -0.90325 0.00000 -627.78187 ] 0 0.50000 -0.45526
( 314.68607 340.24353 -6.58369 ) ( 14.68608 483.24353 -6.58369 ) ( 15.68608 12.24352 190.41631 ) thatch [ -0.90269 0.43028 0.00000 272.59054 ] [ -0.43028 -0.90269 0.00000 -599.74653 ] 0 0.50000 -0.45359
}
// Brush 7
// roof:g[3] -> poly:p[6]
{
( -31.99997 462.22540 8 ) ( 86.25659 511.20886 8 ) ( -80.98349 580.48199 8 ) thatch [ -0.92388 0.38268 0.00000 -412.90019 ] [ 0.38268 0.92388 0.00000 829.58949 ] 0 0.50000 -0.50000
( -16 15 200 ) ( -16 481.51099 2.58572 ) ( -16 481.51099 -1.40730 ) thatch [ 0.00000 -1.00000 0.00000 1096.75094 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.50000 -0.50000
( -16 15 200 ) ( -323.26923 351.42615 -5.40032 ) ( -323.26923 351.42615 -1.40730 ) thatch [ 0.00000 1.00000 0.00000 -785.91568 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.36919 -0.50000
( -16 431 28 ) ( -16.97056 15.31372 200 ) ( -290 315 28 ) thatch [ 0.92087 0.38986 0.00000 105.47112 ] [ 0.38986 -0.92087 0.00000 -494.98786 ] 0 0.50000 -0.45600
( -14.81549 428.20215 13.39832 ) ( -288.81549 312.20215 13.39832 ) ( -15.78605 12.51587 189.39832 ) thatch [ -0.92087 -0.38986 0.00000 -13.23136 ] [ 0.38986 -0.92087 0.00000 -596.06283 ] 0 0.50000 -0.45421
}
// Brush 8
// roof:g[3] -> poly:p[7]
{
( 18 450.12772 6.34459 ) ( -16 15.12771 180.80060 ) ( 17.95956 15.12771 180.80060 ) oak2 [ 0.00000 -1.00000 0.00000 61.07333 ] [ -1.00000 0.00000 0.00000 28.43230 ] 0 0.46407 -0.50000
( 16 462 21 ) ( 19 15 204.12866 ) ( -16 15 204.12866 ) oak2 [ 0.00000 -1.00000 0.00000 25.68472 ] [ 1.00000 0.00000 0.00000 6.47100 ] 0 0.46268 -0.50000
( 17 19 192 ) ( -16 19 192.13139 ) ( -16 19 204.12866 ) oak2 [ 0.00000 0.00000 1.00000 -351.98818 ] [ -1.00000 0.00000 0.00000 -90.51242 ] 0 0.50000 -0.50000
( 18 454 16 ) ( -16 462 21 ) ( -49.95956 462 21 ) oak2 [ 0.00000 1.00000 0.00000 -1066.19675 ] [ 1.00000 0.00000 0.00000 -37.49026 ] 0 0.42400 -0.50000
( 17 15 192 ) ( 18 462 32.99726 ) ( 18 462 21 ) oak2 [ 0.00000 0.00000 1.00000 32.00000 ] [ 0.00000 -1.00000 0.00000 -928.67427 ] 0 0.50000 -0.50000
( -16 15 192 ) ( -16 462 21 ) ( -16 462 32.99727 ) oak2 [ 0.00000 0.00000 1.00000 -352.00000 ] [ 0.00000 1.00000 0.00000 32.71239 ] 0 0.50000 -0.50000
}
// Brush 9
// roof:g[3] -> poly:p[8]
{
( 26.57864 -448 8 ) ( -91.67783 -496.98346 8 ) ( 75.56229 -566.25653 8 ) thatch [ 0.92388 -0.38268 0.00000 -391.99501 ] [ -0.38268 -0.92388 0.00000 807.45371 ] 0 0.50000 -0.50000
( 17 -442 28 ) ( 17 -11 197 ) ( 17 -11 200 ) thatch [ 0.00000 -1.00000 0.00000 -64.72501 ] [ 0.00000 0.00000 1.00000 248.00000 ] 0 0.50000 -0.50000
( 290 -311 28 ) ( 17 -11 200 ) ( 17 -11 197 ) thatch [ 0.00000 1.00000 0.00000 9.50385 ] [ 0.00000 0.00000 1.00000 248.00000 ] 0 0.36980 -0.50000
( 17 -442 28 ) ( 17 -11 200 ) ( 290 -311 28 ) thatch [ 0.90157 0.43262 0.00000 167.72154 ] [ -0.43262 0.90157 0.00000 -619.77393 ] 0 0.50000 -0.45721
( 15.43711 -438.74298 12.06906 ) ( 288.43710 -307.74298 12.06906 ) ( 15.43711 -7.74298 189.06906 ) thatch [ -0.90157 -0.43262 0.00000 275.94330 ] [ -0.43262 0.90157 0.00000 -590.51928 ] 0 0.50000 -0.45502
}
// Brush 10
// roof:g[3] -> poly:p[9]
{
( -333.42136 -337.77454 8 ) ( -451.67786 -288.79111 8 ) ( -382.40469 -456.03119 8 ) thatch [ 0.92388 0.38268 0.00000 874.60406 ] [ 0.38268 -0.92388 0.00000 368.93633 ] 0 0.50000 -0.50000
( -16 -11 200 ) ( -16 -477.51096 -1.40730 ) ( -16 -477.51096 2.58572 ) thatch [ 0.00000 1.00000 0.00000 1088.75095 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.50000 -0.50000
( -16 -11 200 ) ( -323.26923 -347.42615 -1.40730 ) ( -323.26923 -347.42615 -5.40032 ) thatch [ 0.00000 -1.00000 0.00000 -775.08113 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.36919 -0.50000
( -16 -427 28 ) ( -290 -311 28 ) ( -16.97056 -11.31371 200 ) thatch [ 0.92087 -0.38986 0.00000 108.58999 ] [ 0.38986 0.92087 0.00000 -486.91000 ] 0 0.50000 -0.45600
( -14.81549 -424.20212 13.39832 ) ( -15.78605 -8.51582 189.39832 ) ( -288.81549 -308.20212 13.39832 ) thatch [ -0.92087 0.38986 0.00000 -16.35022 ] [ 0.38986 0.92087 0.00000 -587.95306 ] 0 0.50000 -0.45421
}
// Brush 11
// roof:g[3] -> poly:p[10]
{
( 21.21320 -412.91696 15.79097 ) ( -18.74517 -7.03772 185.79095 ) ( -59.06392 -7.03773 185.79095 ) oak2 [ 0.00000 1.00000 0.00000 822.81942 ] [ -1.00000 0.00000 0.00000 -99.56770 ] 0 0.46118 -0.50000
( 16 -458 21 ) ( -16 -11 204.12866 ) ( 19 -11 204.12866 ) oak2 [ 0.00000 1.00000 0.00000 17.03939 ] [ 1.00000 0.00000 0.00000 6.47100 ] 0 0.46268 -0.50000
( 17 -16 204 ) ( -16 -16 204.12866 ) ( -16 -16 192.13139 ) oak2 [ 0.00000 0.00000 1.00000 -351.98817 ] [ -1.00000 0.00000 0.00000 -90.51242 ] 0 0.50000 -0.50000
( 16 -458 21 ) ( -16 -439.92532 12.47870 ) ( -16 -458 21 ) oak2 [ 0.00000 -1.00000 0.00000 -989.26574 ] [ 1.00000 0.00000 0.00000 -37.49023 ] 0 0.45226 -0.50000
( 17 -11 204 ) ( 18 -458 9.00273 ) ( 18 -458 21 ) oak2 [ 0.00000 0.00000 1.00000 32.00000 ] [ 0.00000 1.00000 0.00000 -920.67425 ] 0 0.50000 -0.50000
( -16 -11 192 ) ( -16 -458 32.99727 ) ( -16 -458 21 ) oak2 [ 0.00000 0.00000 1.00000 -352.00000 ] [ 0.00000 -1.00000 0.00000 24.71239 ] 0 0.50000 -0.50000
}
// Brush 12
// poly:p[4]
{
( -312.19806 0 -316 ) ( -184.19804 0 -316 ) ( -312.19806 128.00002 -316 ) Floor_slate01 [ 0.00000 1.00000 0.00000 0.00000 ] [ 1.00000 0.00000 0.00000 -312.19803 ] 0 1.00000 -1.00000
( -312.19806 0 -308 ) ( -440.19806 0 -308 ) ( -312.19806 128.00002 -308 ) Floor_slate01 [ 0.00000 1.00000 0.00000 0.00000 ] [ -1.00000 0.00000 0.00000 312.19807 ] 0 1.00000 -1.00000
( -343 -62 -308 ) ( -343 62 -308 ) ( -343 62 -316 ) Floor_slate01 [ 0.00000 1.00000 0.00000 128.05273 ] [ 0.00000 0.00000 1.00000 -394.00000 ] 0 1.00000 -1.00000
( -376 62 -308 ) ( -376 -62 -316 ) ( -376 -62 -324 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 -0.00042 ] [ 0.00000 0.00000 1.00000 -394.00000 ] 0 1.00000 -1.00000
( -360 -62 -308 ) ( -376 -62 -324 ) ( -376 -62 -316 ) Floor_slate01 [ 1.00000 0.00000 0.00000 440.16902 ] [ 0.00000 0.00000 1.00000 -394.00000 ] 0 1.00000 -1.00000
( -376 62 -308 ) ( -360 62 -316 ) ( -360 62 -308 ) Floor_slate01 [ -1.00000 0.00000 0.00000 -313.01253 ] [ 0.00000 0.00000 1.00000 -394.00000 ] 0 1.00000 -1.00000
}
// Brush 13
// poly:p[5]
{
( -378 -62 -140 ) ( -360 62.22540 -140 ) ( -360 186.67618 -140 ) oak2 [ 0.00000 1.00000 0.00000 0.00000 ] [ 1.00000 0.00000 0.00000 -755.22459 ] 0 0.50000 -0.50000
( -378 -62 -134 ) ( -360 62.22540 -134 ) ( -360 -62.22540 -134 ) oak2 [ 0.00000 1.00000 0.00000 -256.00000 ] [ -1.00000 0.00000 0.00000 755.22456 ] 0 0.50000 -0.50000
( -359 62 -140 ) ( -359 -62 -120 ) ( -359 -62 -100 ) oak2 [ 0.00000 1.00000 0.00000 -128.09961 ] [ 0.00000 0.00000 1.00000 -305.99992 ] 0 0.50000 -0.50000
( -376 62 -120 ) ( -376 -62 -140 ) ( -376 -62 -160 ) oak2 [ 0.00000 -1.00000 0.00000 128.00854 ] [ 0.00000 0.00000 1.00000 -306.04905 ] 0 0.50000 -0.50000
( -378 -72 -140 ) ( -360 -72 -120 ) ( -360 -72 -140 ) oak2 [ 1.00000 0.00000 0.00000 755.20365 ] [ 0.00000 0.00000 1.00000 -306.00000 ] 0 0.50000 -0.50000
( -378 72 -120 ) ( -360 72 -140 ) ( -360 72 -120 ) oak2 [ -1.00000 0.00000 0.00000 -754.60675 ] [ 0.00000 0.00000 1.00000 -306.00000 ] 0 0.50000 -0.50000
}
// Brush 14
// poly:p[6]
{
( -313.61227 -33.94112 -316 ) ( -185.61226 -33.94112 -316 ) ( -313.61227 94.05888 -316 ) oak2 [ 0.00000 1.00000 0.00000 67.88225 ] [ 1.00000 0.00000 0.00000 -627.22455 ] 0 0.50000 -0.50000
( -313.61227 -33.94112 -134 ) ( -441.61227 -33.94112 -134 ) ( -313.61227 94.05888 -134 ) oak2 [ 0.00000 1.00000 0.00000 67.88225 ] [ -1.00000 0.00000 0.00000 627.22452 ] 0 0.50000 -0.50000
( -360 62 -308 ) ( -360 56 -96 ) ( -360 56 116 ) oak2 [ 0.00000 1.00000 0.00000 -62.66071 ] [ 0.00000 0.00000 1.00000 -386.00000 ] 0 0.50000 -0.50000
( -376 62 -96 ) ( -376 56 -308 ) ( -376 56 -520 ) oak2 [ 0.00000 -1.00000 0.00000 188.03433 ] [ 0.00000 0.00000 1.00000 -898.00000 ] 0 0.50000 -0.50000
( -378 56 -308 ) ( -360 56 -96 ) ( -360 56 -308 ) oak2 [ 1.00000 0.00000 0.00000 755.24364 ] [ 0.00000 0.00000 1.00000 -898.00000 ] 0 0.50000 -0.50000
( -378 62 -96 ) ( -360 62 -308 ) ( -360 62 -96 ) oak2 [ -1.00000 0.00000 0.00000 -755.22173 ] [ 0.00000 0.00000 1.00000 -2.00000 ] 0 0.50000 -0.50000
}
// Brush 15
// poly:p[7]
{
( -313.61227 -152.73506 -316 ) ( -185.61226 -152.73506 -316 ) ( -313.61227 -24.73506 -316 ) oak2 [ 0.00000 1.00000 0.00000 305.47013 ] [ 1.00000 0.00000 0.00000 -627.22455 ] 0 0.50000 -0.50000
( -313.61227 -152.73506 -134 ) ( -441.61227 -152.73506 -134 ) ( -313.61227 -24.73506 -134 ) oak2 [ 0.00000 1.00000 0.00000 305.47013 ] [ -1.00000 0.00000 0.00000 627.22452 ] 0 0.50000 -0.50000
( -360 -62 -96 ) ( -360 -56 -96 ) ( -360 -56 -308 ) oak2 [ 0.00000 1.00000 0.00000 180.01310 ] [ 0.00000 0.00000 1.00000 -2.00000 ] 0 0.50000 -0.50000
( -376 -62 -308 ) ( -376 -56 -308 ) ( -376 -56 -96 ) oak2 [ 0.00000 -1.00000 0.00000 -49.47437 ] [ 0.00000 0.00000 1.00000 -898.00000 ] 0 0.50000 -0.50000
( -360 -62 -96 ) ( -376 -62 -520 ) ( -376 -62 -308 ) oak2 [ 1.00000 0.00000 0.00000 755.22137 ] [ 0.00000 0.00000 1.00000 -386.00000 ] 0 0.50000 -0.50000
( -376 -56 -96 ) ( -360 -56 -308 ) ( -360 -56 -96 ) oak2 [ -1.00000 0.00000 0.00000 -755.24489 ] [ 0.00000 0.00000 1.00000 -2.00000 ] 0 0.50000 -0.50000
}
// Brush 16
// poly:p[8]
{
( -404 196 -367 ) ( -556 64 -367 ) ( -340 64 -367 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -404 196 -367 ) ( -340 64 -323 ) ( -445.93729 64 -323.76108 ) WALNOGROOVE [ -0.02178 0.99976 0.00000 -158.47730 ] [ -0.99976 -0.02178 0.00000 288.69020 ] 0 0.94965 -1.00000
( -340 64 -323 ) ( -556 64 -367 ) ( -445.93726 64 -323.76108 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -489.00970 193.98059 -367 ) ( -456.21799 64 -327.79993 ) ( -556 64 -367 ) WALNOGROOVE [ -0.45812 -0.88889 0.00000 -82.65050 ] [ 0.88889 -0.45812 0.00000 -527.48803 ] 0 1.00000 -0.91465
( -404 196 -367 ) ( -340 64 -367 ) ( -340 64 -323 ) WALNOGROOVE [ 0.00000 1.00000 0.00000 -135.12578 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 0.89981 -1.00000
}
// Brush 17
// poly:p[9]
{
( -556 -64 -367 ) ( -340 -64 -367 ) ( -340 64 -367 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -408 0 -323 ) ( -408 128 -323 ) ( -280 0 -323 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -408 -64 -387 ) ( -408 -64 -259 ) ( -280 -64 -387 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -408 64 -387 ) ( -408 64 -259 ) ( -536 64 -387 ) WALNOGROOVE [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -556 -64 -367 ) ( -444 64 -323 ) ( -444 -64 -323 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 0.00000 ] [ 1.00000 0.00000 0.00000 -541.03389 ] 0 1.00000 -0.93075
( -340 0 -387 ) ( -340 0 -259 ) ( -340 128 -387 ) WALNOGROOVE [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
}
// Brush 18
// poly:p[10]
{
( -556 -64 -531 ) ( -340 -64 -531 ) ( -340 64 -531 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -556 -64 -367 ) ( -340 192 -367 ) ( -340 64 -367 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -408 -64 -431 ) ( -408 -64 -303 ) ( -280 -64 -431 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -408 64 -431 ) ( -408 64 -303 ) ( -536 64 -431 ) concrete [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -556 -64 -367 ) ( -556 64 -411 ) ( -556 192 -411 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -354.66713 ] 0 1.00000 -1.00000
( -340 0 -431 ) ( -340 0 -303 ) ( -340 128 -431 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
}
// Brush 19
// poly:p[11]
{
( -556 64 -531 ) ( -340 64 -531 ) ( -340 192 -531 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -556 64 -367 ) ( -340 320 -367 ) ( -340 192 -367 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 1.00000 -1.00000
( -408 64 -431 ) ( -408 64 -303 ) ( -280 64 -431 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -364 124 -367 ) ( -488 192 -531 ) ( -488 192 -695 ) concrete [ -1.00000 0.00000 0.00000 -220.56147 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 0.87681 -1.00000
( -488 192 -531 ) ( -556 64 -367 ) ( -556 64 -531 ) concrete [ 0.00000 -1.00000 0.00000 392.47067 ] [ 0.00000 0.00000 1.00000 -610.66713 ] 0 0.88312 -1.00000
( -364 124 -367 ) ( -340 64 -531 ) ( -340 64 -367 ) concrete [ 0.00000 1.00000 0.00000 -132.93011 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 0.92848 -1.00000
}
// Brush 20
// poly:p[12]
{
( -556 -192 -531 ) ( -340 -192 -531 ) ( -340 -64 -531 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 128.00000 ] 0 1.00000 -1.00000
( -556 -192 -367 ) ( -340 64 -367 ) ( -340 -64 -367 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -412 -196 -367 ) ( -340 -168 -367 ) ( -340 -168 -531 ) concrete [ 1.00000 0.00000 0.00000 434.13429 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 0.93200 -1.00000
( -408 -64 -431 ) ( -408 -64 -303 ) ( -536 -64 -431 ) concrete [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -412 -196 -367 ) ( -556 -64 -695 ) ( -556 -64 -531 ) concrete [ 1.00000 0.00000 0.00000 946.25203 ] [ 0.00000 0.00000 1.00000 -610.66713 ] 0 0.73715 -1.00000
( -340 -168 -531 ) ( -340 -64 -203 ) ( -340 -64 -367 ) concrete [ 0.00000 1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
}
// Brush 21
// poly:p[13]
{
( -340 -168 -367 ) ( -340 -64 -367 ) ( -556 -64 -367 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -340 -168 -367 ) ( -444 -64 -323 ) ( -340 -64 -334.38873 ) WALNOGROOVE [ 0.32970 -0.94409 0.00000 44.77624 ] [ 0.94409 0.32970 0.00000 -507.41516 ] 0 0.94902 -1.00000
( -408 -64 -387 ) ( -408 -64 -259 ) ( -536 -64 -387 ) WALNOGROOVE [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -412 -196 -367 ) ( -556 -64 -367 ) ( -444 -64 -323 ) WALNOGROOVE [ 0.73715 -0.67572 0.00000 474.76945 ] [ 0.67572 0.73715 0.00000 -466.83977 ] 0 1.00000 -0.86451
( -340 -168 -367 ) ( -340 -64 -334.38873 ) ( -340 -64 -367 ) WALNOGROOVE [ 0.00000 1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
}
// Brush 22
// n-prism:g[14] -> prism-slice:p[1]
{
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( -294.15643 294.15643 -32 ) ( 0 416.00003 -32 ) ( -260.21530 260.21530 -352 ) stonewall [ 1.00000 0.00000 0.00000 320.22952 ] [ -0.05296 0.00000 0.99860 -32.30582 ] 0 0.92388 -0.99193
( -316.78384 316.78384 -32 ) ( -294.15643 294.15643 -32 ) ( -271.52899 271.52899 -352 ) stonewall [ 0.00000 -1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 0 416.00003 -32 ) ( 0 448 -32 ) ( 0 368 -352 ) stonewall [ 0.00000 1.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 0 448 -32 ) ( -316.78384 316.78384 -32 ) ( 0 383.99997 -352 ) cottage_detail [ -1.00000 0.00000 0.00000 134.89348 ] [ -0.07053 0.00000 0.99751 -218.16475 ] 0 2.67925 -2.85885
}
// Brush 23
// n-prism:g[14] -> prism-slice:p[2]
{
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 0 416.00003 -32 ) ( 294.15643 294.15643 -32 ) ( 0 368 -352 ) stonewall [ 1.00000 0.00000 0.00000 -1.83689 ] [ 0.05296 0.00000 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 0 448 -32 ) ( 0 416.00003 -32 ) ( 0 383.99997 -352 ) stonewall [ 0.00000 -1.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 294.15643 294.15643 -32 ) ( 316.78384 316.78384 -32 ) ( 260.21530 260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 316.78384 316.78384 -32 ) ( 0 448 -32 ) ( 271.52899 271.52899 -352 ) cottage_detail [ 1.00000 0.00000 0.00000 -124.42458 ] [ 0.07053 0.00000 0.99751 -217.09792 ] 0 2.67925 -2.85885
}
// Brush 24
// n-prism:g[14] -> prism-slice:p[3]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 294.15643 294.15643 -32 ) ( 416.00003 0 -32 ) ( 260.21530 260.21530 -352 ) stonewall [ 0.00000 -1.00000 0.00000 320.22952 ] [ 0.00000 0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 316.78384 316.78384 -32 ) ( 294.15643 294.15643 -32 ) ( 271.52899 271.52899 -352 ) stonewall [ 0.00000 -1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 416.00003 0 -32 ) ( 448 0 -32 ) ( 368 0 -352 ) stonewall [ 1.00000 0.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 448 0 -32 ) ( 316.78384 316.78384 -32 ) ( 383.99997 0 -352 ) cottage_detail [ 0.00000 -1.00000 0.00000 -4.36674 ] [ 0.00000 0.07053 0.99751 -216.54253 ] 0 2.67925 -2.85885
}
// Brush 25
// n-prism:g[14] -> prism-slice:p[4]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( 316.78384 -316.78384 -32 ) ( 448 0 -32 ) ( 271.52899 -271.52899 -352 ) cottage_detail [ 0.00000 1.00000 0.00000 254.84506 ] [ 0.00000 -0.07053 0.99751 -218.67496 ] 0 2.67925 -2.85885
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 416.00003 0 -32 ) ( 294.15643 -294.15643 -32 ) ( 368 0 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -1.83689 ] [ 0.00000 -0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 448 0 -32 ) ( 416.00003 0 -32 ) ( 383.99997 0 -352 ) stonewall [ -1.00000 0.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 294.15643 -294.15643 -32 ) ( 316.78384 -316.78384 -32 ) ( 260.21530 -260.21530 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
}
// Brush 26
// n-prism:g[14] -> prism-slice:p[5]
{
( 0 -448 -32 ) ( 316.78384 -316.78384 -32 ) ( 0 -383.99997 -352 ) cottage_detail [ 1.00000 0.00000 0.00000 -123.22489 ] [ 0.07053 0.00000 0.99751 36.93919 ] 0 2.67925 -2.85885
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 294.15643 -294.15643 -32 ) ( 0 -416.00003 -32 ) ( 260.21530 -260.21530 -352 ) stonewall [ -1.00000 0.00000 0.00000 320.22952 ] [ 0.05296 0.00000 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 316.78384 -316.78384 -32 ) ( 294.15643 -294.15643 -32 ) ( 271.52899 -271.52899 -352 ) stonewall [ 0.00000 1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 0 -416.00003 -32 ) ( 0 -448 -32 ) ( 0 -368 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
}
// Brush 27
// n-prism:g[14] -> prism-slice:p[6]
{
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 0 -416.00003 -32 ) ( -294.15643 -294.15643 -32 ) ( 0 -368 -352 ) stonewall [ -1.00000 0.00000 0.00000 -153.23968 ] [ -0.05296 0.00000 0.99860 -292.27698 ] 0 0.92388 -0.99193
( 0 -448 -32 ) ( 0 -416.00003 -32 ) ( 0 -383.99997 -352 ) stonewall [ 0.00000 1.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( -294.15643 -294.15643 -32 ) ( -316.78384 -316.78384 -32 ) ( -260.21530 -260.21530 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -316.78384 -316.78384 -32 ) ( 0 -448 -32 ) ( -271.52899 -271.52899 -352 ) cottage_detail [ 1.00000 0.00000 0.00000 254.48281 ] [ -0.07053 0.00000 0.99751 -218.23891 ] 0 2.67925 -2.85885
}
// Brush 28
// n-prism:g[14] -> prism-slice:p[7]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( -339.41125 0 -110 ) ( -467.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( -448 0 -32 ) ( -316.78384 -316.78384 -32 ) ( -383.99997 0 -352 ) cottage_detail [ 0.00000 -1.00000 0.00000 131.64687 ] [ 0.00000 -0.07053 0.99751 37.32247 ] 0 2.67925 -2.85885
( -416.00003 0 -32 ) ( -448 0 -32 ) ( -368 0 -352 ) stonewall [ -1.00000 0.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( -316.78384 -316.78384 -32 ) ( -294.15643 -294.15643 -32 ) ( -271.52899 -271.52899 -352 ) stonewall [ 0.00000 1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -294.15643 -294.15643 -32 ) ( -416.00003 0 -32 ) ( -260.21530 -260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 320.22952 ] [ 0.00000 -0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
}
// Brush 29
// n-prism:g[14] -> prism-slice:p[8]
{
( -358 -62 -352 ) ( -380.71878 -62 -96 ) ( -409.51877 -62 -96 ) oak2 [ -1.00000 0.00000 0.00000 -550.82251 ] [ 0.00000 0.00000 1.00000 -448.00000 ] 0 0.50000 -0.50000
( -358 -62 -352 ) ( -271.52899 -271.52899 -352 ) ( -260.21530 -260.21530 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05788 ] 0 1.00000 -1.00000
( -294.15643 -294.15643 -32 ) ( -416.00003 0 -32 ) ( -260.21530 -260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 320.22952 ] [ 0.00000 -0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( -316.78384 -316.78384 -32 ) ( -294.15643 -294.15643 -32 ) ( -271.52899 -271.52899 -352 ) stonewall [ 0.00000 1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -358 -62 -352 ) ( -409.51877 -62 -96 ) ( -307.73288 -307.73288 -96 ) cottage_detail [ 0.00000 -1.00000 0.00000 131.63874 ] [ 0.00000 -0.07097 0.99748 37.30570 ] 0 2.67925 -2.85835
( -339.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) ( -467.41125 0 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
}
// Brush 30
// n-prism:g[14] -> prism-slice:p[9]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( -339.41125 0 -110 ) ( -467.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( -316.78384 316.78384 -32 ) ( -448 0 -32 ) ( -271.52899 271.52899 -352 ) cottage_detail [ 0.00000 -1.00000 0.00000 255.55404 ] [ 0.00000 0.07053 0.99751 37.22023 ] 0 2.67925 -2.85885
( -294.15643 294.15643 -32 ) ( -316.78384 316.78384 -32 ) ( -260.21530 260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -448 0 -32 ) ( -416.00003 0 -32 ) ( -383.99997 0 -352 ) stonewall [ 1.00000 0.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( -416.00003 0 -32 ) ( -294.15643 294.15643 -32 ) ( -368 0 -352 ) stonewall [ 0.00000 1.00000 0.00000 -1.83689 ] [ 0.00000 0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
}
// Brush 31
// n-prism:g[14] -> prism-slice:p[10]
{
( -339.41125 62 -288 ) ( -467.41125 62.00001 -288 ) ( -339.41125 62 -160 ) oak2 [ 1.00000 0.00000 0.00000 678.82253 ] [ 0.00000 0.00000 1.00000 -576.00000 ] 0 0.50000 -0.50000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( -416.00003 0 -32 ) ( -294.15643 294.15643 -32 ) ( -368 0 -352 ) stonewall [ 0.00000 1.00000 0.00000 -1.83689 ] [ 0.00000 0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( -294.15643 294.15643 -32 ) ( -316.78384 316.78384 -32 ) ( -260.21530 260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -316.78384 316.78384 -32 ) ( -448 0 -32 ) ( -271.52899 271.52899 -352 ) cottage_detail [ 0.00000 -1.00000 0.00000 255.55581 ] [ 0.00000 0.07053 0.99751 37.20545 ] 0 2.67925 -2.85885
( -339.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) ( -467.41125 0 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
}
// Brush 32
// n-prism:g[16] -> prism-slice:p[1]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( -271.52899 271.52899 -316 ) ( 0 0 -316 ) ( -362.03867 362.03867 -516 ) concrete [ 0.00000 -1.00000 0.00000 60.58667 ] [ 0.00000 0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( 0 0 -316 ) ( 0 383.99997 -316 ) ( 0 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( 0 383.99997 -316 ) ( -271.52899 271.52899 -316 ) ( 0 512 -516 ) concrete [ -1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24002 ] 0 2.12132 -1.56250
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 33
// n-prism:g[16] -> prism-slice:p[2]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 0 383.99997 -316 ) ( 0 0 -316 ) ( 0 512 -516 ) concrete [ 0.00000 -1.00000 0.00000 60.58665 ] [ 0.00000 0.53905 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( 271.52899 271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( 271.52899 271.52899 -316 ) ( 0 383.99997 -316 ) ( 362.03867 362.03867 -516 ) concrete [ -1.00000 0.00000 0.00000 60.58666 ] [ 0.41229 0.00000 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 34
// n-prism:g[16] -> prism-slice:p[3]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 271.52899 271.52899 -316 ) ( 0 0 -316 ) ( 362.03867 362.03867 -516 ) concrete [ 0.00000 -1.00000 0.00000 60.58667 ] [ 0.00000 0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( 0 0 -316 ) ( 383.99997 0 -316 ) ( 0 0 -516 ) concrete [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( 383.99997 0 -316 ) ( 271.52899 271.52899 -316 ) ( 512 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24002 ] 0 2.12132 -1.56250
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 35
// n-prism:g[16] -> prism-slice:p[4]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 383.99997 0 -316 ) ( 0 0 -316 ) ( 512 0 -516 ) concrete [ -1.00000 0.00000 0.00000 60.58665 ] [ 0.53905 0.00000 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( 271.52899 -271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( 271.52899 -271.52899 -316 ) ( 383.99997 0 -316 ) ( 362.03867 -362.03867 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58666 ] [ 0.00000 -0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 36
// n-prism:g[16] -> prism-slice:p[5]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 271.52899 -271.52899 -316 ) ( 0 0 -316 ) ( 362.03867 -362.03867 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58667 ] [ 0.00000 -0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( 0 0 -316 ) ( 0 -383.99997 -316 ) ( 0 0 -516 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( 0 -383.99997 -316 ) ( 271.52899 -271.52899 -316 ) ( 0 -512 -516 ) concrete [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24002 ] 0 2.12132 -1.56250
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 37
// n-prism:g[16] -> prism-slice:p[6]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 0 -383.99997 -316 ) ( 0 0 -316 ) ( 0 -512 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58665 ] [ 0.00000 -0.53905 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( -271.52899 -271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( -271.52899 -271.52899 -316 ) ( 0 -383.99997 -316 ) ( -362.03867 -362.03867 -516 ) concrete [ 1.00000 0.00000 0.00000 60.58666 ] [ -0.41229 0.00000 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 38
// n-prism:g[16] -> prism-slice:p[7]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( -271.52899 -271.52899 -316 ) ( 0 0 -316 ) ( -362.03867 -362.03867 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58667 ] [ 0.00000 -0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -389.99997 0 -316 ) ( 0 0 -516 ) ( 0 0 -316 ) concrete [ -1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( -389.99997 0 -316 ) ( -271.52899 -271.52899 -316 ) ( -362.03870 -362.03870 -516 ) concrete [ 0.00000 -1.00000 0.00000 1.90366 ] [ 0.00000 -0.01332 -0.99991 202.88992 ] 0 2.10451 -1.55957
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 39
// n-prism:g[16] -> prism-slice:p[8]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( -389.99997 0 -316 ) ( 0 0 -316 ) ( 0 0 -516 ) concrete [ 1.00000 0.00000 0.00000 60.58665 ] [ -0.53905 0.00000 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( -271.52899 271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( -389.99997 0 -316 ) ( -362.03867 362.03867 -516 ) ( -271.52899 271.52899 -316 ) concrete [ 0.00000 -1.00000 0.00000 58.46637 ] [ 0.00000 0.42028 -0.90740 202.88989 ] 0 2.10451 -1.71858
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 40
// poly:p[17]
{
( -356 62 -134 ) ( -412 64 -134 ) ( -412.73248 95.82824 -134 ) oak2 [ -1.00000 0.00000 0.00000 -640.00000 ] [ 0.00000 -1.00000 0.00000 -168.00000 ] 0 0.50000 -0.50000
( -376 62 -358 ) ( -412.73248 95.82824 -110 ) ( -411.95526 62.05633 -110 ) oak2 [ 0.00000 0.00333 -0.99999 -190.24071 ] [ 0.00000 -1.00000 0.00000 -253.78166 ] 0 0.49483 -0.49987
( -325 62 -358 ) ( -356 62 -110 ) ( -355.99191 95.83032 -110 ) oak2 [ 0.00000 -0.00003 -1.00000 -180.29281 ] [ 0.00000 1.00000 0.00000 126.39584 ] 0 0.49614 -0.50000
( -325 62 -358 ) ( -411.95526 62.05633 -110 ) ( -356 62 -110 ) oak2 [ 0.00000 0.00000 -1.00000 -184.03269 ] [ 1.00000 0.00000 0.00000 -842.70375 ] 0 0.50000 -0.50000
( -346 96 -96 ) ( -382.72119 93.33807 -316 ) ( -329.99249 93.34000 -316 ) oak2 [ 0.00000 0.00000 1.00000 696.01209 ] [ 1.00000 0.00000 0.00000 -714.70500 ] 0 0.49996 -0.50000
( -325 62 -358 ) ( -376.70953 92.83036 -358 ) ( -376 62 -358 ) oak2 [ 0.00000 1.00000 0.00000 -158.39193 ] [ 1.00000 0.00000 0.00000 -738.94030 ] 0 0.50000 -0.50000
}
// Brush 41
// poly:p[18]
{
( -414 -62 -134 ) ( -358 -62 -134 ) ( -357.98538 -95.98513 -134 ) oak2 [ -1.00000 0.00000 0.00000 -768.00000 ] [ 0.00000 -1.00000 0.00000 88.00000 ] 0 0.50000 -0.50000
( -414 -62 -110 ) ( -378.03061 -85.60588 -358 ) ( -378 -62 -358 ) oak2 [ 0.00000 -0.00019 -1.00000 -187.36764 ] [ 0.00000 -1.00000 0.00000 179.03115 ] 0 0.49481 -0.50000
( -325 -62 -358 ) ( -357.98538 -95.98513 -110 ) ( -358 -62 -110 ) oak2 [ 0.00000 0.00006 -1.00000 -691.60461 ] [ 0.00000 1.00000 0.00000 -179.08738 ] 0 0.49563 -0.50000
( -414 -96 -110 ) ( -329.98911 -87.35181 -316 ) ( -384.03290 -87.36615 -316 ) oak2 [ -0.00001 0.00000 -1.00000 -568.40482 ] [ 1.00000 0.00000 0.00000 -726.01637 ] 0 0.49956 -0.50000
( -414 -62 -110 ) ( -378 -62 -358 ) ( -325 -62.02607 -358 ) oak2 [ 0.00000 0.00000 1.00000 311.88940 ] [ 1.00000 0.00000 0.00000 -854.02390 ] 0 0.50000 -0.50000
( -378 -62 -358 ) ( -324.98984 -85.59180 -358 ) ( -325 -62 -358 ) oak2 [ 0.00000 1.00000 0.00000 147.07821 ] [ 1.00000 0.00000 0.00000 -750.25397 ] 0 0.50000 -0.50000
}
// Brush 42
// poly:p[19]
{
( -340 -98 -134 ) ( -440 98 -134 ) ( -440 -98 -134 ) oak2 [ 1.00000 0.00000 0.00000 640.00000 ] [ 0.00000 -1.00000 0.00000 -40.00000 ] 0 0.50000 -0.50000
( -348 -98 -98 ) ( -442 98 -98 ) ( -442 294 -98 ) oak2 [ 1.00000 0.00000 0.00000 896.00000 ] [ 0.00000 1.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( -384 -98 -142 ) ( -384 -98 -14 ) ( -256 -98 -142 ) oak2_end [ 1.00000 0.00000 0.00000 563.20000 ] [ 0.00000 0.00000 1.00000 -476.44444 ] 0 0.78125 -0.28125
( -384 98 -142 ) ( -384 98 -14 ) ( -512 98 -142 ) oak2_end [ -1.00000 0.00000 0.00000 -435.20000 ] [ 0.00000 0.00000 1.00000 -476.44444 ] 0 0.78125 -0.28125
( -440 84 -142 ) ( -440 84 -14 ) ( -440 -44 -142 ) oak2 [ 0.00000 -1.00000 0.00000 168.00000 ] [ 0.00000 0.00000 1.00000 -284.00000 ] 0 0.50000 -0.50000
( -340 -98 -134 ) ( -348 98 -98 ) ( -348 294 -98 ) oak2 [ 0.00000 1.00000 0.00000 88.00000 ] [ 0.00000 0.00000 1.00000 -290.53756 ] 0 0.50000 -0.48809
}
// Brush 43
// poly:p[27]
{
( -502.82654 42.82590 -352 ) ( -458.82654 13.82591 -352 ) ( -458.82654 13.82591 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -136.05352 ] [ 0.00000 0.00000 1.00000 -42.00000 ] 0 1.00000 -1.00000
( -537.82648 21.82592 -352 ) ( -502.82654 42.82590 -352 ) ( -502.82654 42.82590 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -70.16914 ] [ 0.00000 0.00000 1.00000 -42.00000 ] 0 1.00000 -1.00000
( -527.82654 -28.17411 -352 ) ( -537.82648 21.82592 -352 ) ( -537.82648 21.82592 -340 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 315.85304 ] [ 0.00000 0.00000 1.00000 -42.00000 ] 0 1.00000 -1.00000
( -483.82651 -57.17407 -352 ) ( -527.82654 -28.17411 -352 ) ( -527.82654 -28.17411 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -136.05381 ] [ 0.00000 0.00000 1.00000 -42.00000 ] 0 1.00000 -1.00000
( -448.82648 -36.17412 -352 ) ( -483.82651 -57.17407 -352 ) ( -483.82651 -57.17407 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -70.16961 ] [ 0.00000 0.00000 1.00000 -42.00000 ] 0 1.00000 -1.00000
( -458.82654 13.82591 -352 ) ( -448.82648 -36.17412 -352 ) ( -448.82648 -36.17412 -340 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 315.85292 ] [ 0.00000 0.00000 1.00000 -42.00000 ] 0 1.00000 -1.00000
( -458.82654 13.82591 -340 ) ( -448.82648 -36.17412 -340 ) ( -483.82651 -57.17407 -340 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 232.94586 ] [ 1.00000 0.00000 0.00000 70.16930 ] 0 1.00000 -1.00000
( -448.82648 -36.17412 -467 ) ( -458.82654 13.82591 -467 ) ( -502.82654 42.82590 -467 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 232.94590 ] [ 1.00000 0.00000 0.00000 70.16927 ] 0 1.00000 -1.00000
}
// Brush 44
// poly:p[28]
{
( -379.00925 -13.94112 -312 ) ( -408.39841 4.16476 -375 ) ( -408.39841 4.16476 -438 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 404.77491 ] [ 0.00000 0.00000 1.00000 -398.00000 ] 0 1.01969 -1.00000
( -450.85236 -21.30759 -324 ) ( -415.85239 -0.30761 -324 ) ( -415.85239 -0.30761 -312 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -157.14341 ] [ 0.00000 0.00000 1.00000 -14.00000 ] 0 1.00000 -1.00000
( -440.85239 -71.30762 -324 ) ( -450.85236 -21.30759 -324 ) ( -450.85236 -21.30759 -312 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 272.71952 ] [ 0.00000 0.00000 1.00000 -14.00000 ] 0 1.00000 -1.00000
( -396.85239 -100.30759 -324 ) ( -440.85239 -71.30762 -324 ) ( -440.85239 -71.30762 -312 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -223.02780 ] [ 0.00000 0.00000 1.00000 -14.00000 ] 0 1.00000 -1.00000
( -381.83768 -84.65180 -312 ) ( -396.85239 -100.30759 -375 ) ( -396.85239 -100.30759 -312 ) WALNOGROOVE [ 0.00000 1.00000 0.00000 205.18057 ] [ 0.00000 0.00000 1.00000 -398.00000 ] 0 0.84167 -1.00000
( -379.00925 -13.94112 -312 ) ( -379.00925 -81.70262 -375 ) ( -379.00925 -81.70262 -312 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 18.49430 ] [ 0.00000 0.00000 1.00000 -398.00000 ] 0 1.01980 -1.00000
( -371.85239 -29.30760 -312 ) ( -361.85236 -79.30762 -312 ) ( -396.85239 -100.30759 -312 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 189.81230 ] [ 1.00000 0.00000 0.00000 157.14334 ] 0 1.00000 -1.00000
( -361.85236 -79.30762 -375 ) ( -371.85239 -29.30760 -375 ) ( -415.85239 -0.30761 -375 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 189.81240 ] [ 1.00000 0.00000 0.00000 157.14337 ] 0 1.00000 -1.00000
}
// Brush 45
// poly:p[29]
{
( -390.51282 158.16907 -352 ) ( -406.51279 79.16907 -352 ) ( -406.51279 79.16907 -340 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 236.19185 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -440.51282 187.16904 -352 ) ( -390.51282 158.16907 -352 ) ( -390.51282 158.16907 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -27.48728 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -506.51282 137.16907 -352 ) ( -440.51282 187.16904 -352 ) ( -440.51282 187.16904 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -138.46451 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -522.51282 58.16907 -352 ) ( -506.51282 137.16907 -352 ) ( -506.51282 137.16907 -340 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 236.19187 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -472.51279 29.16904 -352 ) ( -522.51282 58.16907 -352 ) ( -522.51282 58.16907 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -27.48717 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -406.51279 79.16907 -352 ) ( -472.51279 29.16904 -352 ) ( -472.51279 29.16904 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -138.46436 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -406.51279 79.16907 -340 ) ( -472.51279 29.16904 -340 ) ( -522.51282 58.16907 -340 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 236.19185 ] [ 1.00000 0.00000 0.00000 27.48721 ] 0 1.00000 -1.00000
( -440.51282 187.16904 -467 ) ( -506.51282 137.16907 -467 ) ( -522.51282 58.16907 -467 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 236.19184 ] [ 1.00000 0.00000 0.00000 27.48722 ] 0 1.00000 -1.00000
}
// Brush 46
// poly:p[30]
{
( -325.45898 -31.33555 -352 ) ( -341.45895 -110.33554 -352 ) ( -341.45895 -110.33554 -340 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 46.68724 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -375.45898 -2.33558 -352 ) ( -325.45898 -31.33555 -352 ) ( -325.45898 -31.33555 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -92.54110 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -448.63730 -42.86015 -352 ) ( -382.63733 7.13982 -352 ) ( -382.63733 7.13982 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -196.33995 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -469.42743 -128.91156 -352 ) ( -453.42743 -49.91156 -352 ) ( -453.42743 -49.91156 -340 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 49.11121 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -407.45898 -160.33557 -352 ) ( -457.45895 -131.33554 -352 ) ( -457.45895 -131.33554 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -92.54085 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -341.45895 -110.33554 -352 ) ( -407.45898 -160.33557 -352 ) ( -407.45898 -160.33557 -340 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -203.51826 ] [ 0.00000 0.00000 1.00000 -56.00000 ] 0 1.00000 -1.00000
( -341.45895 -110.33554 -340 ) ( -407.45898 -160.33557 -340 ) ( -457.45895 -131.33554 -340 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 46.68720 ] [ 1.00000 0.00000 0.00000 92.54105 ] 0 1.00000 -1.00000
( -375.45898 -2.33558 -516 ) ( -441.45895 -52.33555 -516 ) ( -457.45895 -131.33554 -516 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 46.68724 ] [ 1.00000 0.00000 0.00000 92.54107 ] 0 1.00000 -1.00000
}
// Brush 47
// poly:p[31]
{
( -381.83768 79.39697 -308 ) ( -390.32294 121.82338 -320 ) ( -390.32294 121.82338 -332 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 121.12095 ] [ 0.00000 0.00000 1.00000 -368.00000 ] 0 0.98502 -1.00000
( -390.32294 121.82338 -308 ) ( -409.51489 119.10394 -320 ) ( -409.51489 119.10394 -332 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 393.53700 ] [ 0.00000 0.00000 1.00000 -368.00000 ] 0 1.00119 -1.00000
( -435.88538 54.82589 -320 ) ( -403.88538 132.82591 -320 ) ( -403.88538 132.82591 -308 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 122.82591 ] [ 0.00000 0.00000 1.00000 16.00000 ] 0 1.00000 -1.00000
( -437.98422 -30.13589 -320 ) ( -445.98425 53.86409 -320 ) ( -445.98425 53.86409 -308 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 121.86411 ] [ 0.00000 0.00000 1.00000 16.00000 ] 0 1.00000 -1.00000
( -381.83768 -11.11270 -308 ) ( -427.88535 -29.17409 -320 ) ( -427.88535 -29.17409 -308 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 546.53751 ] [ 0.00000 0.00000 1.00000 -368.00000 ] 0 0.94136 -1.00000
( -379.00925 79.39697 -308 ) ( -379.00925 -11.11270 -320 ) ( -379.00925 -11.11270 -308 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 124.96942 ] [ 0.00000 0.00000 1.00000 -368.00000 ] 0 1.08088 -1.00000
( -355.88538 42.82590 -308 ) ( -387.88538 -35.17408 -308 ) ( -427.88535 -29.17409 -308 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 122.82589 ] [ 1.00000 0.00000 0.00000 120.11459 ] 0 1.00000 -1.00000
( -387.88538 -35.17408 -320 ) ( -355.88538 42.82590 -320 ) ( -363.88538 126.82590 -320 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 122.82592 ] [ 1.00000 0.00000 0.00000 120.11462 ] 0 1.00000 -1.00000
}
// Brush 48
// poly:p[32]
{
( -409.14023 122.19850 -340 ) ( -377.14023 37.19848 -340 ) ( -377.14023 37.19848 -328 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 154.19848 ] [ 0.00000 0.00000 1.00000 -82.00000 ] 0 1.00000 -1.00000
( -471.14020 122.19849 -340 ) ( -409.14023 122.19850 -340 ) ( -409.14023 122.19850 -328 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -38.85980 ] [ 0.00000 0.00000 1.00000 -82.00000 ] 0 1.00000 -1.00000
( -501.14020 37.19850 -340 ) ( -471.14020 122.19849 -340 ) ( -471.14020 122.19849 -328 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 154.19849 ] [ 0.00000 0.00000 1.00000 -82.00000 ] 0 1.00000 -1.00000
( -469.14020 -47.80152 -340 ) ( -501.14020 37.19850 -340 ) ( -501.14020 37.19850 -328 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 154.19851 ] [ 0.00000 0.00000 1.00000 -82.00000 ] 0 1.00000 -1.00000
( -407.14023 -47.80154 -340 ) ( -469.14020 -47.80152 -340 ) ( -469.14020 -47.80152 -328 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -38.85977 ] [ 0.00000 0.00000 1.00000 -82.00000 ] 0 1.00000 -1.00000
( -377.14023 37.19848 -340 ) ( -407.14023 -47.80154 -340 ) ( -407.14023 -47.80154 -328 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 154.19849 ] [ 0.00000 0.00000 1.00000 -82.00000 ] 0 1.00000 -1.00000
( -377.14023 37.19848 -328 ) ( -407.14023 -47.80154 -328 ) ( -469.14020 -47.80152 -328 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 154.19848 ] [ 1.00000 0.00000 0.00000 38.85973 ] 0 1.00000 -1.00000
( -407.14023 -47.80154 -340 ) ( -377.14023 37.19848 -340 ) ( -409.14023 122.19850 -340 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 154.19849 ] [ 1.00000 0.00000 0.00000 38.85974 ] 0 1.00000 -1.00000
}
// Brush 49
// poly:p[33]
{
( -341.25797 178.76704 -332 ) ( -309.25797 93.76702 -332 ) ( -309.25797 93.76702 -320 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 210.76702 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 1.00000 -1.00000
( -403.25797 147.65433 -332 ) ( -341.25797 147.65434 -332 ) ( -341.25797 147.65434 -320 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -106.74203 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 1.00000 -1.00000
( -433.25797 93.76704 -332 ) ( -403.25797 178.76703 -332 ) ( -403.25797 178.76703 -320 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 210.76704 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 1.00000 -1.00000
( -401.25797 8.76702 -332 ) ( -433.25797 93.76704 -332 ) ( -433.25797 93.76704 -320 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 210.76706 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 1.00000 -1.00000
( -339.25797 28.56600 -332 ) ( -401.25797 28.56601 -332 ) ( -401.25797 28.56601 -320 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 -106.74203 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 1.00000 -1.00000
( -309.25797 93.76702 -332 ) ( -339.25797 8.76701 -332 ) ( -339.25797 8.76701 -320 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 210.76703 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 1.00000 -1.00000
( -309.25797 93.76702 -320 ) ( -339.25797 8.76701 -320 ) ( -401.25797 8.76702 -320 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 210.76700 ] [ 1.00000 0.00000 0.00000 106.74198 ] 0 1.00000 -1.00000
( -339.25797 8.76701 -516 ) ( -309.25797 93.76702 -516 ) ( -341.25797 178.76704 -516 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 210.76703 ] [ 1.00000 0.00000 0.00000 106.74198 ] 0 1.00000 -1.00000
}
// Brush 50
// poly:p[34]
{
( -441.56830 74.36057 -332 ) ( -358.83679 36.88391 -332 ) ( -358.83679 36.88391 -320 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 485.67610 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 0.97331 -1.00000
( -471.40891 16.51997 -332 ) ( -427.56830 60.36057 -332 ) ( -427.56830 60.36057 -320 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 156.67279 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 0.70711 -1.00000
( -446.51804 -50.79729 -332 ) ( -485.40887 30.51996 -332 ) ( -485.40887 30.51996 -320 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 63.90216 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 0.95667 -1.00000
( -363.78653 -88.27398 -332 ) ( -446.51804 -50.79729 -332 ) ( -446.51804 -50.79729 -320 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 575.76167 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 0.97331 -1.00000
( -341.94592 -22.43339 -332 ) ( -385.78650 -66.27399 -332 ) ( -385.78650 -66.27399 -320 ) WALNOGROOVE [ 0.00000 1.00000 0.00000 -414.27441 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 0.70711 -1.00000
( -358.83679 36.88391 -332 ) ( -319.94592 -44.43339 -332 ) ( -319.94592 -44.43339 -320 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 155.55432 ] [ 0.00000 0.00000 1.00000 -74.00000 ] 0 0.95667 -1.00000
( -358.83679 36.88391 -320 ) ( -319.94592 -44.43339 -320 ) ( -363.78653 -88.27398 -320 ) WALNOGROOVE [ 0.70711 -0.70711 0.00000 396.81677 ] [ 0.70711 0.70711 0.00000 188.34484 ] 0 1.00000 -1.00000
( -319.94592 -44.43339 -328 ) ( -358.83679 36.88391 -328 ) ( -441.56830 74.36057 -328 ) WALNOGROOVE [ 0.70711 -0.70711 0.00000 396.81675 ] [ 0.70711 0.70711 0.00000 188.34483 ] 0 1.00000 -1.00000
}
}
// Entity 1
// detail:b[20]
{
"classname" "detail"
// Brush 0
// detail:b[20] -> poly:p[1]
{
( 45.25483 22.62742 -24 ) ( 135.76450 -67.88225 -24 ) ( 135.76450 113.13708 -24 ) oak2 [ 0.70711 0.70711 0.00000 -96.00001 ] [ 0.70711 -0.70711 0.00000 32.00000 ] 0 0.50000 -0.50000
( 45.25483 22.62742 8 ) ( -45.25483 113.13708 8 ) ( 135.76450 113.13708 8 ) oak2 [ 0.70711 0.70711 0.00000 -96.00001 ] [ -0.70711 0.70711 0.00000 -32.00000 ] 0 0.50000 -0.50000
( 45.25483 22.62742 -24 ) ( 45.25483 22.62742 104 ) ( 135.76450 113.13708 -24 ) oak2 [ 0.00000 1.00000 0.00000 -64.00001 ] [ 0.00000 0.00000 1.00000 -48.00001 ] 0 0.35355 -0.50000
( 22.62742 45.25483 -24 ) ( 22.62742 45.25483 104 ) ( -67.88225 -45.25483 -24 ) oak2 [ -1.00000 0.00000 0.00000 64.00000 ] [ 0.00000 0.00000 1.00000 -48.00001 ] 0 0.35355 -0.50000
( -345.06812 -367.69553 -23.99998 ) ( -345.06812 -367.69553 104.00002 ) ( -254.55844 -458.20520 -23.99998 ) oak2_end [ 0.00000 -1.00000 0.00000 -1951.99998 ] [ 0.00000 0.00000 1.00000 -95.99993 ] 0 0.17678 -0.25000
( 367.69553 345.06812 -23.99995 ) ( 367.69553 345.06812 104.00004 ) ( 277.18585 435.57779 -23.99995 ) oak2_end [ 0.00000 1.00000 0.00000 -1951.99999 ] [ 0.00000 0.00000 1.00000 -95.99982 ] 0 0.17678 -0.25000
}
// Brush 1
// detail:b[20] -> poly:p[2]
{
( -22.62742 45.25483 -24 ) ( 67.88225 135.76450 -24 ) ( -113.13708 135.76450 -24 ) oak2 [ -0.70711 0.70711 0.00000 -96.00001 ] [ 0.70711 0.70711 0.00000 32.00000 ] 0 0.50000 -0.50000
( -22.62742 45.25483 8 ) ( -113.13708 -45.25483 8 ) ( -113.13708 135.76450 8 ) oak2 [ -0.70711 0.70711 0.00000 -96.00001 ] [ -0.70711 -0.70711 0.00000 -32.00000 ] 0 0.50000 -0.50000
( -22.62742 45.25483 -24 ) ( -22.62742 45.25483 104 ) ( -113.13708 135.76450 -24 ) oak2 [ -1.00000 0.00000 0.00000 -64.00001 ] [ 0.00000 0.00000 1.00000 -48.00001 ] 0 0.35355 -0.50000
( -45.25483 22.62742 -24 ) ( -45.25483 22.62742 104 ) ( 45.25483 -67.88225 -24 ) oak2 [ 0.00000 -1.00000 0.00000 64.00000 ] [ 0.00000 0.00000 1.00000 -48.00001 ] 0 0.35355 -0.50000
( 367.69553 -345.06812 -23.99998 ) ( 367.69553 -345.06812 104.00002 ) ( 458.20520 -254.55844 -23.99998 ) oak2_end [ 0.00000 1.00000 0.00000 2079.99999 ] [ 0.00000 0.00000 1.00000 -95.99993 ] 0 0.17678 -0.25000
( -345.06812 367.69553 -23.99995 ) ( -345.06812 367.69553 104.00004 ) ( -435.57779 277.18585 -23.99995 ) oak2_end [ 0.00000 -1.00000 0.00000 2079.99998 ] [ 0.00000 0.00000 1.00000 -95.99982 ] 0 0.17678 -0.25000
}
// Brush 2
// detail:b[20] -> poly:p[3]
{
( -322.44070 -345.06812 44 ) ( -271.52899 -294.15643 -352 ) ( -294.15643 -271.52899 -352 ) oak2 [ 0.00000 0.12752 -0.99184 125.49758 ] [ 0.00000 -1.00000 0.00000 832.00002 ] 0 0.49598 -0.35355
( -288.49957 -311.12698 60 ) ( -282.84271 -214.96046 -352 ) ( -260.21530 -237.58788 -352 ) oak2 [ 0.00000 0.12264 -0.99245 132.32400 ] [ 0.00000 1.00000 0.00000 -859.02913 ] 0 0.49628 -0.35355
( -313.95541 -336.58282 -448 ) ( -223.44574 -246.07317 -448 ) ( -313.95541 -336.58282 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 1.00000 0.00000 0.00000 -887.99992 ] 0 0.50000 -0.35355
( -336.58282 -313.95541 -448 ) ( -246.07317 -223.44574 -448 ) ( -336.58282 -313.95541 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 0.00000 1.00000 0.00000 -887.99993 ] 0 0.50000 -0.35355
( -288.49957 -311.12698 60 ) ( -345.06812 -322.44070 44 ) ( -367.69553 -299.81326 44 ) oak2_end [ -0.70711 0.70711 0.00000 64.00000 ] [ -0.70711 -0.70711 0.00000 1130.66658 ] 0 0.25000 -0.37500
( -237.58788 -260.21530 -352 ) ( -294.15643 -271.52899 -352 ) ( -271.52899 -294.15643 -352 ) oak2_end [ -0.70711 0.70711 0.00000 64.00003 ] [ 0.70711 0.70711 0.00000 -1583.99984 ] 0 0.25000 -0.25000
}
// Brush 3
// detail:b[20] -> poly:p[4]
{
( -345.06812 322.44070 44 ) ( -294.15643 271.52899 -352 ) ( -271.52899 294.15643 -352 ) oak2 [ 0.00000 -0.12752 -0.99184 125.49758 ] [ 0.00000 -1.00000 0.00000 -1024.00002 ] 0 0.49598 -0.35355
( -311.12698 288.49957 60 ) ( -214.96046 282.84271 -352 ) ( -237.58788 260.21530 -352 ) oak2 [ 0.00000 -0.12264 -0.99245 132.32400 ] [ 0.00000 1.00000 0.00000 795.02913 ] 0 0.49628 -0.35355
( -336.58282 313.95541 -448 ) ( -246.07317 223.44574 -448 ) ( -336.58282 313.95541 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 0.00000 -1.00000 0.00000 -887.99992 ] 0 0.50000 -0.35355
( -313.95541 336.58282 -448 ) ( -223.44574 246.07317 -448 ) ( -313.95541 336.58282 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 1.00000 0.00000 0.00000 -887.99993 ] 0 0.50000 -0.35355
( -311.12698 288.49957 60 ) ( -322.44070 345.06812 44 ) ( -299.81326 367.69553 44 ) oak2_end [ 0.70711 0.70711 0.00000 64.00000 ] [ -0.70711 0.70711 0.00000 1130.66658 ] 0 0.25000 -0.37500
( -260.21530 237.58788 -352 ) ( -271.52899 294.15643 -352 ) ( -294.15643 271.52899 -352 ) oak2_end [ 0.70711 0.70711 0.00000 64.00003 ] [ 0.70711 -0.70711 0.00000 -1583.99984 ] 0 0.25000 -0.25000
}
// Brush 4
// detail:b[20] -> poly:p[5]
{
( -16 467.29352 44 ) ( -16 395.29352 -352 ) ( 16 395.29352 -352 ) oak2 [ 0.00000 0.00000 -1.00000 125.49757 ] [ -1.00000 0.00000 0.00000 -96.00000 ] 0 0.49193 -0.50000
( -16 419.29349 60 ) ( 47.99999 347.29352 -352 ) ( 16 347.29352 -352 ) oak2 [ 0.00000 0.00000 -1.00000 132.32400 ] [ 1.00000 0.00000 0.00000 -32.00000 ] 0 0.49254 -0.50000
( -18.17157 455.29349 -448 ) ( -18.17158 327.29352 -448 ) ( -18.17157 455.29349 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 0.00000 -1.00000 0.00000 -910.58695 ] 0 0.50000 -0.50000
( 18.82842 455.29349 -448 ) ( 18.82844 327.29352 -448 ) ( 18.82842 455.29349 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 0.00000 -1.00000 0.00000 -910.58696 ] 0 0.50000 -0.50000
( -16 419.29349 60 ) ( 16 467.29352 44 ) ( 47.99999 467.29352 44 ) oak2_end [ 1.00000 0.00000 0.00000 64.00000 ] [ 0.00000 1.00000 0.00000 1118.11589 ] 0 0.25000 -0.37500
( -16 347.29352 -352 ) ( 16 395.29352 -352 ) ( -16 395.29352 -352 ) oak2_end [ 1.00000 0.00000 0.00000 64.00000 ] [ 0.00000 -1.00000 0.00000 -1565.17383 ] 0 0.25000 -0.25000
}
// Brush 5
// detail:b[20] -> poly:p[6]
{
( 467.29352 16 44 ) ( 395.29352 16 -352 ) ( 395.29352 -16 -352 ) oak2 [ 0.00000 0.00000 -1.00000 125.49757 ] [ 0.00000 1.00000 0.00000 -96.00001 ] 0 0.49193 -0.50000
( 419.29349 16 60 ) ( 347.29352 -47.99999 -352 ) ( 347.29352 -16 -352 ) oak2 [ 0.00000 0.00000 -1.00000 132.32400 ] [ 0.00000 -1.00000 0.00000 -31.99999 ] 0 0.49254 -0.50000
( 455.29349 16 -448 ) ( 327.29352 16 -448 ) ( 455.29349 16 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ -1.00000 0.00000 0.00000 -910.58700 ] 0 0.50000 -0.50000
( 455.29349 -16 -448 ) ( 327.29352 -16.00002 -448 ) ( 455.29349 -16 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ -1.00000 0.00000 0.00000 -910.58701 ] 0 0.50000 -0.50000
( 419.29349 16 60 ) ( 467.29352 -16 44 ) ( 467.29352 -48 44 ) oak2_end [ 0.00000 -1.00000 0.00000 63.99998 ] [ 1.00000 0.00000 0.00000 1118.11595 ] 0 0.25000 -0.37500
( 347.29352 16 -352 ) ( 395.29352 -16 -352 ) ( 395.29352 16 -352 ) oak2_end [ 0.00000 -1.00000 0.00000 64.00004 ] [ -1.00000 0.00000 0.00000 -1565.17395 ] 0 0.25000 -0.25000
}
// Brush 6
// detail:b[20] -> poly:p[7]
{
( 16 -467.29352 44 ) ( 16 -395.29352 -352 ) ( -16 -395.29352 -352 ) oak2 [ 0.00000 0.00000 -1.00000 125.49757 ] [ 1.00000 0.00000 0.00000 -96.00001 ] 0 0.49194 -0.50000
( 16 -419.29349 60 ) ( -47.99999 -347.29352 -352 ) ( -16 -347.29352 -352 ) oak2 [ 0.00000 0.00000 -1.00000 132.32400 ] [ -1.00000 0.00000 0.00000 -31.99999 ] 0 0.49254 -0.50000
( 18 -455.29349 -448 ) ( 18 -327.29352 -448 ) ( 18 -455.29349 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 0.00000 1.00000 0.00000 -910.58705 ] 0 0.50000 -0.50000
( -18 -455.29349 -448 ) ( -18.00001 -327.29352 -448 ) ( -18 -455.29349 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 0.00000 1.00000 0.00000 -910.58705 ] 0 0.50000 -0.50000
( 16 -419.29349 60 ) ( -16 -467.29352 44 ) ( -48 -467.29352 44 ) oak2_end [ -1.00000 0.00000 0.00000 63.99998 ] [ 0.00000 -1.00000 0.00000 1118.11601 ] 0 0.25000 -0.37500
( 16 -347.29352 -352 ) ( -16 -395.29352 -352 ) ( 16 -395.29352 -352 ) oak2_end [ -1.00000 0.00000 0.00000 64.00003 ] [ 0.00000 1.00000 0.00000 -1565.17390 ] 0 0.25000 -0.25000
}
// Brush 7
// detail:b[20] -> poly:p[8]
{
( -339.41125 0 -100 ) ( -467.41125 0 -100 ) ( -339.41125 -128.00002 -100 ) oak2 [ 0.00000 1.00000 0.00000 0.00000 ] [ 1.00000 0.00000 0.00000 -678.82251 ] 0 0.50000 -0.50000
( -419.29349 -16 60 ) ( -467.29352 16 44 ) ( -467.29352 48 44 ) oak2_end [ 0.00000 1.00000 0.00000 63.99998 ] [ -1.00000 0.00000 0.00000 1118.11606 ] 0 0.25000 -0.37500
( -455.29349 16 -448 ) ( -327.29352 16.00002 -448 ) ( -455.29349 16 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 1.00000 0.00000 0.00000 -910.58710 ] 0 0.50000 -0.50000
( -455.29349 -16 -448 ) ( -327.29352 -16 -448 ) ( -455.29349 -16 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 1.00000 0.00000 0.00000 -910.58709 ] 0 0.50000 -0.50000
( -419.29349 -16 60 ) ( -347.29352 47.99999 -352 ) ( -347.29352 16 -352 ) oak2 [ 0.00000 0.00000 -1.00000 132.32400 ] [ 0.00000 1.00000 0.00000 -31.99999 ] 0 0.49254 -0.50000
( -467.29352 -16 44 ) ( -395.29352 -16 -352 ) ( -395.29352 16 -352 ) oak2 [ 0.00000 0.00000 -1.00000 125.49757 ] [ 0.00000 -1.00000 0.00000 -96.00001 ] 0 0.49194 -0.50000
}
// Brush 8
// detail:b[20] -> poly:p[9]
{
( 322.44070 345.06812 44 ) ( 271.52899 294.15643 -352 ) ( 294.15643 271.52899 -352 ) oak2 [ 0.00000 -0.12752 -0.99184 125.49758 ] [ 0.00000 1.00000 0.00000 832.00002 ] 0 0.49598 -0.35355
( 288.49957 311.12698 60 ) ( 282.84271 214.96046 -352 ) ( 260.21530 237.58788 -352 ) oak2 [ 0.00000 -0.12264 -0.99245 132.32400 ] [ 0.00000 -1.00000 0.00000 -859.02913 ] 0 0.49628 -0.35355
( 313.95541 336.58282 -448 ) ( 223.44574 246.07317 -448 ) ( 313.95541 336.58282 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ -1.00000 0.00000 0.00000 -887.99992 ] 0 0.50000 -0.35355
( 336.58282 313.95541 -448 ) ( 246.07317 223.44574 -448 ) ( 336.58282 313.95541 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 0.00000 -1.00000 0.00000 -887.99993 ] 0 0.50000 -0.35355
( 288.49957 311.12698 60 ) ( 345.06812 322.44070 44 ) ( 367.69553 299.81326 44 ) oak2_end [ 0.70711 -0.70711 0.00000 64.00000 ] [ 0.70711 0.70711 0.00000 1130.66658 ] 0 0.25000 -0.37500
( 237.58788 260.21530 -352 ) ( 294.15643 271.52899 -352 ) ( 271.52899 294.15643 -352 ) oak2_end [ 0.70711 -0.70711 0.00000 64.00003 ] [ -0.70711 -0.70711 0.00000 -1583.99984 ] 0 0.25000 -0.25000
}
// Brush 9
// detail:b[20] -> poly:p[10]
{
( 349.06812 -322.44070 44 ) ( 298.15643 -271.52899 -352 ) ( 275.52899 -294.15643 -352 ) oak2 [ 0.00000 0.12752 -0.99184 125.49758 ] [ 0.00000 1.00000 0.00000 -1024.00002 ] 0 0.49598 -0.35355
( 315.12698 -288.49957 60 ) ( 218.96046 -282.84271 -352 ) ( 241.58788 -260.21530 -352 ) oak2 [ 0.00000 0.12264 -0.99245 132.32400 ] [ 0.00000 -1.00000 0.00000 795.02913 ] 0 0.49628 -0.35355
( 340.58282 -313.95541 -448 ) ( 250.07317 -223.44574 -448 ) ( 340.58282 -313.95541 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 0.00000 1.00000 0.00000 -887.99992 ] 0 0.50000 -0.35355
( 317.95541 -336.58282 -448 ) ( 227.44574 -246.07317 -448 ) ( 317.95541 -336.58282 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ -1.00000 0.00000 0.00000 -899.31364 ] 0 0.50000 -0.35355
( 315.12698 -288.49957 60 ) ( 326.44070 -345.06812 44 ) ( 303.81326 -367.69553 44 ) oak2_end [ -0.70711 -0.70711 0.00000 75.31371 ] [ 0.70711 -0.70711 0.00000 1138.20905 ] 0 0.25000 -0.37500
( 264.21530 -237.58788 -352 ) ( 275.52899 -294.15643 -352 ) ( 298.15643 -271.52899 -352 ) oak2_end [ -0.70711 -0.70711 0.00000 75.31370 ] [ -0.70711 0.70711 0.00000 -1595.31358 ] 0 0.25000 -0.25000
}
// Brush 10
// detail:b[20] -> torch:g[11] -> poly:p[1]
{
( 234 219 -234 ) ( 234 91 -234 ) ( 362 219 -234 ) oak1 [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 -1.00000 0.00000 -219.00000 ] 0 1.00000 -1.00000
( 234 219 -220 ) ( 234 347 -220 ) ( 362 219 -220 ) oak1 [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 1.00000 0.00000 219.00000 ] 0 1.00000 -1.00000
( 234 207 -235 ) ( 234 207 -107 ) ( 362 207 -235 ) oak1 [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 0.00000 1.00000 -235.00000 ] 0 1.00000 -1.00000
( 234 217 -235 ) ( 234 217 -107 ) ( 106 217 -235 ) oak1 [ -1.00000 0.00000 0.00000 234.00000 ] [ 0.00000 0.00000 1.00000 -235.00000 ] 0 1.00000 -1.00000
( 207 219 -235 ) ( 207 219 -107 ) ( 207 91 -235 ) oak1 [ 0.00000 -1.00000 0.00000 219.00000 ] [ 0.00000 0.00000 1.00000 -235.00000 ] 0 1.00000 -1.00000
( 217 219 -235 ) ( 217 219 -107 ) ( 217 347 -235 ) oak1 [ 0.00000 1.00000 0.00000 -219.00000 ] [ 0.00000 0.00000 1.00000 -235.00000 ] 0 1.00000 -1.00000
}
// Brush 11
// detail:b[20] -> torch:g[11] -> poly:p[2]
{
( 234 219 -315 ) ( 234 91 -315 ) ( 362 219 -315 ) concrete [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 -1.00000 0.00000 -219.00000 ] 0 1.00000 -1.00000
( 234 219 -228 ) ( 234 347 -228 ) ( 362 219 -228 ) concrete [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 1.00000 0.00000 219.00000 ] 0 1.00000 -1.00000
( 234 210 -252 ) ( 234 210 -124 ) ( 362 210 -252 ) concrete [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 0.00000 1.00000 -252.00000 ] 0 1.00000 -1.00000
( 234 214 -252 ) ( 234 214 -124 ) ( 106 214 -252 ) concrete [ -1.00000 0.00000 0.00000 234.00000 ] [ 0.00000 0.00000 1.00000 -252.00000 ] 0 1.00000 -1.00000
( 210 219 -252 ) ( 210 219 -124 ) ( 210 91 -252 ) concrete [ 0.00000 -1.00000 0.00000 219.00000 ] [ 0.00000 0.00000 1.00000 -252.00000 ] 0 1.00000 -1.00000
( 214 219 -252 ) ( 214 219 -124 ) ( 214 347 -252 ) concrete [ 0.00000 1.00000 0.00000 -219.00000 ] [ 0.00000 0.00000 1.00000 -252.00000 ] 0 1.00000 -1.00000
}
// Brush 12
// detail:b[20] -> torch:g[12] -> poly:p[1]
{
( 234 -205 -234 ) ( 234 -333 -234 ) ( 362 -205 -234 ) oak1 [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 -1.00000 0.00000 205.00000 ] 0 1.00000 -1.00000
( 234 -205 -220 ) ( 234 -77 -220 ) ( 362 -205 -220 ) oak1 [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 1.00000 0.00000 -205.00000 ] 0 1.00000 -1.00000
( 234 -217 -235 ) ( 234 -217 -107 ) ( 362 -217 -235 ) oak1 [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 0.00000 1.00000 -235.00000 ] 0 1.00000 -1.00000
( 234 -207 -235 ) ( 234 -207 -107 ) ( 106 -207 -235 ) oak1 [ -1.00000 0.00000 0.00000 234.00000 ] [ 0.00000 0.00000 1.00000 -235.00000 ] 0 1.00000 -1.00000
( 207 -205 -235 ) ( 207 -205 -107 ) ( 207 -333 -235 ) oak1 [ 0.00000 -1.00000 0.00000 -205.00000 ] [ 0.00000 0.00000 1.00000 -235.00000 ] 0 1.00000 -1.00000
( 217 -205 -235 ) ( 217 -205 -107 ) ( 217 -77 -235 ) oak1 [ 0.00000 1.00000 0.00000 205.00000 ] [ 0.00000 0.00000 1.00000 -235.00000 ] 0 1.00000 -1.00000
}
// Brush 13
// detail:b[20] -> torch:g[12] -> poly:p[2]
{
( 234 -205 -315 ) ( 234 -333 -315 ) ( 362 -205 -315 ) concrete [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 -1.00000 0.00000 205.00000 ] 0 1.00000 -1.00000
( 234 -205 -228 ) ( 234 -77 -228 ) ( 362 -205 -228 ) concrete [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 1.00000 0.00000 -205.00000 ] 0 1.00000 -1.00000
( 234 -214 -252 ) ( 234 -214 -124 ) ( 362 -214 -252 ) concrete [ 1.00000 0.00000 0.00000 -234.00000 ] [ 0.00000 0.00000 1.00000 -252.00000 ] 0 1.00000 -1.00000
( 234 -210 -252 ) ( 234 -210 -124 ) ( 106 -210 -252 ) concrete [ -1.00000 0.00000 0.00000 234.00000 ] [ 0.00000 0.00000 1.00000 -252.00000 ] 0 1.00000 -1.00000
( 210 -205 -252 ) ( 210 -205 -124 ) ( 210 -333 -252 ) concrete [ 0.00000 -1.00000 0.00000 -205.00000 ] [ 0.00000 0.00000 1.00000 -252.00000 ] 0 1.00000 -1.00000
( 214 -205 -252 ) ( 214 -205 -124 ) ( 214 -77 -252 ) concrete [ 0.00000 1.00000 0.00000 205.00000 ] [ 0.00000 0.00000 1.00000 -252.00000 ] 0 1.00000 -1.00000
}
// Brush 14
// detail:b[20] -> poly:p[13]
{
( -217.17157 -13.17157 219 ) ( -217.17157 -141.17157 219 ) ( -345.17160 -13.17158 219 ) oak2 [ -1.00000 0.00000 0.00000 -434.34316 ] [ 0.00000 -1.00000 0.00000 26.34314 ] 0 0.50000 -0.50000
( 467 -16 187 ) ( -467 19 187 ) ( -467 -15 187 ) oak2 [ -1.00000 0.00000 0.00000 -562.34314 ] [ 0.00000 1.00000 0.00000 101.65686 ] 0 0.50000 -0.50000
( -467 -16 219 ) ( 468 -16 187 ) ( 468 -16 155 ) oak2 [ -1.00000 0.00000 0.00000 -946.35168 ] [ 0.00000 0.00000 -1.00000 -438.00000 ] 0 0.50000 -0.50000
( 468 19 219 ) ( -467 19 219 ) ( -467 19 187 ) oak2 [ 1.00000 0.00000 0.00000 946.34387 ] [ 0.00000 0.00000 -1.00000 -438.00000 ] 0 0.50000 -0.50000
( 468 -16 187 ) ( 468 19 251 ) ( 468 19 219 ) oak2_end [ 0.00000 -1.00000 0.00000 75.72875 ] [ 0.00000 0.00000 -1.00000 -876.00000 ] 0 0.25000 -0.25000
( -467 -16 219 ) ( -467 19 155 ) ( -467 19 187 ) oak2_end [ 0.00000 1.00000 0.00000 52.68534 ] [ 0.00000 0.00000 -1.00000 -876.00009 ] 0 0.25000 -0.25000
}
// Brush 15
// detail:b[20] -> poly:p[14]
{
( -287.94806 -106.85542 276.00003 ) ( -294 283.99994 8.00003 ) ( -326 283.99994 8 ) oak2 [ 0.00000 1.00000 0.00000 315.30269 ] [ 1.00000 0.00000 0.00000 -703.89611 ] 0 0.41237 -0.50000
( -287.94806 342.67569 8 ) ( -319.94806 -87.85539 304 ) ( -359.01910 -87.85542 304 ) oak2 [ 0.00000 1.00000 0.00000 256.63783 ] [ -1.00000 0.00000 0.00000 575.89620 ] 0 0.41202 -0.50000
( -288 284 8 ) ( -287.94806 -87.85542 264.00003 ) ( -287.94806 -87.85539 304 ) oak2 [ 0.00000 0.70711 -0.70711 -535.49804 ] [ 0.00000 0.70711 0.70711 571.38027 ] 0 0.50000 -0.50000
( -326 284 8 ) ( -319.94806 -87.85539 304 ) ( -319.94806 -87.85542 264 ) oak2 [ 0.00000 -0.70706 0.70715 -488.51849 ] [ 0.00000 0.70706 0.70715 187.36372 ] 0 0.49997 -0.49997
( -287.94806 -106.85542 276.00003 ) ( -319.94806 -87.85539 304 ) ( -287.94806 -87.85539 304.00003 ) oak2_end [ 1.00000 0.00000 0.00000 1407.79219 ] [ 0.00000 0.00000 1.00000 1273.45695 ] 0 0.25000 -0.20687
( -288 284 8 ) ( -287.94806 342.67569 8 ) ( -326.95496 342.67566 8 ) oak2_end [ 0.00000 1.00000 0.00000 -1280.57820 ] [ 1.00000 0.00000 0.00000 -1218.01814 ] 0 0.25000 -0.25000
}
// Brush 16
// detail:b[20] -> poly:p[15]
{
( 325.82053 -104.26963 273.97229 ) ( 323.28146 284.50824 8 ) ( 291.35199 284.50818 8 ) oak2 [ 0.00000 1.00000 0.00000 315.40879 ] [ 1.00000 0.00000 0.00000 517.98559 ] 0 0.41267 -0.50000
( 322.95358 339.84726 8 ) ( 294.52771 -91.39093 306.48795 ) ( 262.51831 -91.39091 306.48795 ) oak2 [ 0.00000 1.00000 0.00000 257.05437 ] [ -1.00000 0.00000 0.00000 -645.98444 ] 0 0.41112 -0.50000
( 325.82053 -104.26963 273.97229 ) ( 322.90555 339.84726 8 ) ( 323.28146 284.50824 8 ) oak2 [ 0.00000 0.70710 -0.70711 -407.50853 ] [ 0.00000 0.70710 0.70712 443.39058 ] 0 0.49999 -0.49999
( 294.52771 -91.39098 264 ) ( 290.99225 327.09195 -27.99997 ) ( 290.99222 327.09198 12 ) oak2 [ 0.00000 -0.70709 0.70712 279.51443 ] [ 0.00000 0.70709 0.70712 571.39664 ] 0 0.49999 -0.49999
( 325.82053 -104.26963 273.97229 ) ( 294.52768 -91.39093 306.48795 ) ( 325.82053 -89.26958 305.01962 ) oak2_end [ 1.00000 0.00000 0.00000 -1350.31329 ] [ -0.04331 0.00000 0.99906 1282.46381 ] 0 0.24898 -0.22549
( 322.95358 339.84726 8 ) ( 291.35199 284.50818 8 ) ( 323.36136 284.50818 8 ) oak2_end [ 0.00000 1.00000 0.00000 -1152.57835 ] [ 1.00000 0.00000 0.00000 1225.74289 ] 0 0.25000 -0.25000
}
// Brush 17
// detail:b[20] -> poly:p[16]
{
( 286.74966 110.44115 275.02771 ) ( 289.58368 -284.50821 8 ) ( 322.99219 -284.50821 8 ) oak2 [ 0.00000 -1.00000 0.00000 317.97404 ] [ -1.00000 0.00000 0.00000 -709.98441 ] 0 0.41421 -0.50000
( 290 -339 8 ) ( 286.74966 86.44120 303.02130 ) ( 322.99231 87.85542 304.00003 ) oak2 [ 0.00008 -1.00000 0.00000 257.16890 ] [ 1.00000 0.00008 0.00000 581.99804 ] 0 0.41088 -0.50000
( 286.74966 110.44115 275.02771 ) ( 290 -339 8 ) ( 289.58368 -284.50821 8 ) oak2 [ 0.00000 -0.70710 -0.70712 616.47490 ] [ 0.00000 -0.70709 0.70712 187.40712 ] 0 0.49999 -0.49999
( 322.99219 -300.83087 12.68628 ) ( 322.99219 -391.34055 103.19592 ) ( 322.99222 -210.32124 103.19592 ) oak2 [ 0.00000 0.70711 0.70711 407.49800 ] [ 0.00000 -0.70711 0.70711 443.38026 ] 0 0.50000 -0.50000
( 286.74966 110.44115 275.02771 ) ( 322.99231 87.85542 304.00003 ) ( 286.74966 86.44120 303.02130 ) oak2_end [ -1.00000 0.00000 0.00000 1229.77126 ] [ 0.05302 0.00000 0.99859 1276.34054 ] 0 0.24952 -0.19022
( 290 -339 8 ) ( 322.99219 -284.50821 8 ) ( 290.50372 -284.50821 8 ) oak2_end [ -1.00000 0.00000 0.00000 1291.96886 ] [ 0.00000 1.00000 0.00000 -1217.48292 ] 0 0.25000 -0.25000
}
// Brush 18
// detail:b[20] -> poly:p[17]
{
( -319.94791 111.85537 275.99997 ) ( -313.68826 -284.50827 7.99997 ) ( -281.68839 -284.50824 8 ) oak2 [ 0.00000 -1.00000 0.00000 317.96047 ] [ -1.00000 0.00000 0.00000 511.89612 ] 0 0.41420 -0.50000
( -319.94806 -339.84723 8 ) ( -287.94803 87.85542 304.00003 ) ( -248.82942 87.85544 304.00003 ) oak2 [ 0.00000 -1.00000 0.00000 257.09224 ] [ 1.00000 0.00000 0.00000 -511.89613 ] 0 0.41114 -0.50000
( -319.94803 -300.83087 12.68628 ) ( -319.94806 -391.34055 103.19592 ) ( -319.94806 -391.34055 -77.82336 ) oak2 [ 0.00000 -0.70711 -0.70711 -407.49802 ] [ 0.00000 -0.70711 0.70711 443.38029 ] 0 0.50000 -0.50000
( -280.87698 -332.77615 8 ) ( -287.94803 87.85542 304.00003 ) ( -287.94803 87.85539 264 ) oak2 [ 0.00000 0.70706 0.70716 279.48046 ] [ 0.00000 -0.70706 0.70716 571.36268 ] 0 0.49996 -0.49996
( -319.94791 111.85537 275.99997 ) ( -287.94803 87.85543 304.00003 ) ( -319.94791 87.85541 304 ) oak2_end [ -1.00000 0.00000 0.00000 -1023.79372 ] [ 0.00000 0.00000 1.00000 1405.49167 ] 0 0.25000 -0.18981
( -319.94806 -339.84723 8 ) ( -281.68845 -284.50824 8 ) ( -320.80701 -284.50824 8 ) oak2_end [ -1.00000 0.00000 0.00000 -1151.79227 ] [ 0.00000 1.00000 0.00000 -1217.48292 ] 0 0.25000 -0.25000
}
}
// Entity 2
// light_omni:e[21]
{
"classname" "light_omni"
"origin" "-212 -212 -196"
"color" "192 160 140"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1500"
}
// Entity 3
// light_omni:e[22]
{
"classname" "light_omni"
"origin" "212 -212 -196"
"color" "192 160 140"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1500"
}
// Entity 4
// light_omni:e[23]
{
"classname" "light_omni"
"origin" "212 212 -196"
"color" "192 160 140"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1500"
}
// Entity 5
// light_omni:e[24]
{
"classname" "light_omni"
"origin" "-212 212 -196"
"color" "192 160 140"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1500"
}
// Entity 6
// light_omni:e[25]
{
"classname" "light_omni"
"origin" "-359 0 -147"
"color" "245 245 255"
"alarm_type" "0"
"falloff1" "200"
"falloff2" "3000"
}
// Entity 7
// portal:b[26]
{
"classname" "portal"
"ambient_light" "0"
// Brush 0
// portal:b[26] -> poly:p[1]
{
( -360.03867 -62.22540 -308 ) ( -362.86710 64.34672 -308 ) ( -362.86710 -63.63960 -308 ) NULL [ 0.00000 1.00000 0.00000 4.42915 ] [ 1.00000 0.00000 0.00000 -338.07166 ] 0 1.00000 -1.00000
( -362.86710 -65.05383 -140 ) ( -360.03864 64.34670 -140 ) ( -360.03867 -63.63962 -140 ) NULL [ 0.00000 1.00000 0.00000 -32.15292 ] [ -1.00000 0.00000 0.00000 279.07508 ] 0 1.00000 -1.00000
( -360 56 -308 ) ( -360 -56 -116 ) ( -360 -56 76 ) NULL [ 0.00000 1.00000 0.00000 -56.48529 ] [ 0.00000 0.00000 1.00000 -209.65101 ] 0 1.00000 -1.00000
( -376 -56 -308 ) ( -376 56.00001 -308 ) ( -376 56 -116 ) NULL [ 0.00000 -1.00000 0.00000 -55.52045 ] [ 0.00000 0.00000 1.00000 -401.15082 ] 0 1.00000 -1.00000
( -364 -56 -308 ) ( -360 -56 -116 ) ( -360 -55.99999 -308 ) NULL [ 1.00000 0.00000 0.00000 370.88033 ] [ 0.00000 0.00000 1.00000 -416.00000 ] 0 1.00000 -1.00000
( -360 56 -308 ) ( -364 56 76 ) ( -364 56 -116 ) NULL [ -1.00000 0.00000 0.00000 -354.88030 ] [ 0.00000 0.00000 1.00000 -224.00000 ] 0 1.00000 -1.00000
}
}

View File

@@ -0,0 +1,629 @@
// This map has been written by QuArK - Quake Army Knife, QuArK 6.3
// It is a map for the game Torque.
// For more information see QuArK's Home Page : http://www.planetquake.com/quark
// Entity 0
// worldspawn
{
"classname" "worldspawn"
"detail_number" "3"
"min_pixels" "20"
"geometry_scale" "32.0"
"light_geometry_scale" "16.0"
"ambient_color" "0 0 0"
"emergency_ambient_color" "0 0 0"
"mapversion" "220"
"oldstyle_lighting" "0"
"rad_subdivision_u" "4"
"rad_subdivision_v" "4"
"rad_arealight_multiplier" "100000"
"rad_pointlight_multiplier" "1.0"
"rad_convergence" "1.0"
"rad_iteration_limiter" "1024"
"rad_directlight_only" "0"
"rad_use_nusselts" "0"
"rad_ambientterm" "0"
"rad_adaptive_degradation" "1"
"rad_adaptive_threshold" "15"
"rad_adaptive_max_x" "128"
"rad_adaptive_max_y" "128"
"rad_defaultreflectivity" ".38 .38 .38"
"rad_defaultemissioncolor" "0.0 0.0 0.0"
"rad_defaultemissionintensity" "0.0"
"rad_octree_threshold" "50000"
"rad_octree_minnoderadius" "5.0"
"rad_octree_maxtreedepth" "50"
"rad_bsp_gaussian" "8"
"rad_bsp_searchrange" "5"
"rad_lightmap_gamma" "1.0"
"rad_lightmap_width" "256"
"rad_lightmap_height" "256"
// Brush 0
// n-prism:p[1]
{
( 0 412 -40.50000 ) ( 0 412 -39.50000 ) ( -296.98486 288.98486 -40.50000 ) concrete [ -1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.32019 -0.00781
( -296.98486 288.98486 -40.50000 ) ( -296.98486 288.98486 -39.50000 ) ( -420 -8 -40.50000 ) concrete [ 0.00000 -1.00000 0.00000 124.55201 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.32019 -0.00781
( -420 -8 -40.50000 ) ( -420 -8 -39.50000 ) ( -296.98486 -304.98486 -40.50000 ) concrete [ 0.00000 -1.00000 0.00000 -3.44799 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.32019 -0.00781
( -296.98486 -304.98486 -40.50000 ) ( -296.98486 -304.98486 -39.50000 ) ( 0 -428 -40.50000 ) concrete [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.32019 -0.00781
( 0 -428 -40.50000 ) ( 0 -428 -39.50000 ) ( 296.98486 -304.98486 -40.50000 ) concrete [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.32019 -0.00781
( 296.98486 -304.98486 -40.50000 ) ( 296.98486 -304.98486 -39.50000 ) ( 420 -8 -40.50000 ) concrete [ 0.00000 1.00000 0.00000 131.44798 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.32019 -0.00781
( 420 -8 -40.50000 ) ( 420 -8 -39.50000 ) ( 296.98486 288.98486 -40.50000 ) concrete [ 0.00000 1.00000 0.00000 3.44799 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.32019 -0.00781
( 296.98486 288.98486 -40.50000 ) ( 296.98486 288.98486 -39.50000 ) ( 0 412 -40.50000 ) concrete [ -1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.32019 -0.00781
( -420 -300 -40.50000 ) ( -420 -428 -40.50000 ) ( -292 -300 -40.50000 ) concrete [ 1.00000 0.00000 0.00000 420.00000 ] [ 0.00000 -1.00000 0.00000 300.00000 ] 0 1.00000 -1.00000
( -420 -428 8.50000 ) ( -420 -300 8.50000 ) ( -292 -428 8.50000 ) concrete [ 1.00000 0.00000 0.00000 420.00000 ] [ 0.00000 1.00000 0.00000 -428.00000 ] 0 1.00000 -1.00000
}
// Brush 1
// poly:p[2]
{
( -308 -346 8 ) ( -176 348 8 ) ( -308 348 8 ) concrete [ 1.00000 0.00000 0.00000 240.00000 ] [ 0.00000 -1.00000 0.00000 -400.00000 ] 0 1.00000 -1.00000
( -308 2 208 ) ( -176 -346 8 ) ( -308 -346 8 ) cottage_detail [ 1.00000 0.00000 0.00000 68.93999 ] [ 0.00000 1.00000 0.00000 -192.50844 ] 0 5.00000 -4.33507
( -308 2 208 ) ( -176 348 8 ) ( -44 348 8 ) cottage_detail [ -1.00000 0.00000 0.00000 67.86000 ] [ 0.00000 -1.00000 0.00000 -194.21755 ] 0 5.00000 -4.32884
( -308 -112 72 ) ( -308 -112 200 ) ( -308 -240 72 ) cottage_detail [ 0.00000 -1.00000 0.00000 127.31935 ] [ 0.00000 0.00000 1.00000 -0.84720 ] 0 2.64453 -2.71484
( 316 -112 72 ) ( 316 -112 200 ) ( 316 16 72 ) cottage_detail [ 0.00000 1.00000 0.00000 125.32596 ] [ 0.00000 0.00000 1.00000 -2.34760 ] 0 2.54297 -2.68359
}
// Brush 2
// roof:g[3] -> prism-slice:p[1]
{
( -308 280 16 ) ( -442 0 16 ) ( -408 0 16 ) thatch [ 0.70711 -0.70711 0.00000 640.00006 ] [ -0.70711 -0.70711 0.00000 639.99989 ] 0 0.50000 -0.50000
( -308 0 56 ) ( -408 0 16 ) ( -442 0 16 ) thatch [ 1.00000 0.00000 0.00000 966.39997 ] [ 0.19612 0.00000 0.98058 32.63372 ] 0 0.50000 -0.50000
( -302 280 16 ) ( -302 0 56 ) ( -302 0 63.85714 ) thatch [ 0.00000 1.00000 0.00000 -49.11285 ] [ 0.00000 -0.14834 0.98894 32.35775 ] 0 0.50000 -0.50000
( -308 284 16 ) ( -308 0 63.85714 ) ( -442 0 16 ) thatch [ -0.42672 -0.90439 0.00000 -267.80139 ] [ 0.86702 -0.49827 0.00000 -874.03136 ] 0 0.50000 -0.46526
}
// Brush 3
// roof:g[3] -> prism-slice:p[2]
{
( -308 -280 16 ) ( -408 0 16 ) ( -442.38437 0 15.86273 ) thatch [ 0.42808 0.90374 0.00000 480.27819 ] [ 0.90374 -0.42809 0.00000 -721.73688 ] 0 0.50000 -0.50000
( -301.98843 -280.00156 16.01084 ) ( -302.00259 -0.00155 63.86293 ) ( -301.98843 -0.00155 56.01084 ) thatch [ 0.00000 1.00000 0.00000 608.47658 ] [ 0.00000 0.19612 0.98058 -220.64377 ] 0 0.50000 -0.50000
( -308 0 56 ) ( -442.38437 0 15.86273 ) ( -408 0 16 ) thatch [ -1.00000 0.00000 0.00000 -652.98687 ] [ 0.14834 0.00000 0.98894 35.05452 ] 0 0.50000 -0.50000
( -308 -292 16 ) ( -442.38437 0 15.86273 ) ( -308.00342 0 63.85592 ) thatch [ 0.41708 -0.90887 0.00000 80.82618 ] [ 0.93953 0.34247 0.00000 -871.34205 ] 0 0.50000 -0.46556
}
// Brush 4
// roof:g[3] -> prism-slice:p[3]
{
( 436 0 16 ) ( 306 310 16 ) ( 306 288.78281 16 ) thatch [ -0.70711 -0.70711 0.00000 887.96195 ] [ 0.70711 -0.70711 0.00000 -132.46670 ] 0 0.50000 -0.50000
( 436 0 16 ) ( 306 0 55.76558 ) ( 305.99997 0.00003 63.40933 ) thatch [ -1.00000 0.00000 0.00000 701.55762 ] [ -0.19612 0.00000 0.98058 32.63371 ] 0 0.50000 -0.50000
( 306 300 16.00002 ) ( 305.99997 0.00003 64.86497 ) ( 306 0 57.31020 ) thatch [ 0.00000 1.00000 0.00000 -558.57504 ] [ 0.00000 -0.14834 0.98894 -223.64206 ] 0 0.50000 -0.50000
( 436 0 16 ) ( 305.99997 0.00003 63.40933 ) ( 306 310 16 ) thatch [ 0.38673 -0.92219 0.00000 -231.75632 ] [ -0.88799 -0.45986 0.00000 -879.23815 ] 0 0.50000 -0.46517
}
// Brush 5
// roof:g[3] -> prism-slice:p[4]
{
( 406 0 16 ) ( 306 -285.98676 16.00195 ) ( 306 -310.70157 15.96365 ) thatch [ -0.43531 0.90028 0.00000 982.76639 ] [ -0.90028 -0.43532 0.00000 -442.35057 ] 0 0.50000 -0.50000
( 306 -297 16 ) ( 306 0 57.38930 ) ( 306 0 64.96645 ) thatch [ 0.00000 1.00000 0.00000 611.00096 ] [ 0.00000 0.19612 0.98058 35.35322 ] 0 0.50000 -0.50000
( 406 0 16 ) ( 306 0 63.51880 ) ( 306 0 55.85646 ) thatch [ 1.00000 0.00000 0.00000 -644.14452 ] [ -0.14834 0.00000 0.98894 35.05452 ] 0 0.50000 -0.50000
( 436 0 16 ) ( 306 -310.70157 15.96365 ) ( 306 0 63.51880 ) thatch [ -0.38623 -0.92240 0.00000 47.65576 ] [ -0.95056 0.31054 0.00000 -873.29576 ] 0 0.50000 -0.46504
}
// Brush 6
// roof:g[3] -> poly:p[5]
{
( 316 348 8 ) ( 0 0 209.46548 ) ( 0 488 8 ) cottage_detail [ 0.99944 -0.03340 0.00000 66.05230 ] [ 0.03528 -0.99938 0.00000 -193.36136 ] 0 4.93008 -4.63253
( 316 348 8 ) ( 0 488 8 ) ( 0 0 8 ) thatch [ -0.92388 -0.38268 0.00000 825.00501 ] [ -0.38268 0.92388 0.00000 402.95759 ] 0 0.50000 -0.50000
( 0 488 8 ) ( 0 0 209.46548 ) ( 0 0 198.67296 ) thatch [ 0.00000 1.00000 0.00000 -841.25249 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.50000 -0.50000
( 316 348 8 ) ( 0 0 8 ) ( 0 0 209.46548 ) thatch [ 0.00000 -1.00000 0.00000 1048.87540 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.37016 -0.50000
}
// Brush 7
// roof:g[3] -> poly:p[6]
{
( -308 348 8 ) ( 0 0 8 ) ( 0 488 8 ) thatch [ -0.92388 0.38268 0.00000 -668.90019 ] [ 0.38268 0.92388 0.00000 317.58949 ] 0 0.50000 -0.50000
( 0 488 8 ) ( 0 0 197.53516 ) ( 0 0 209.31844 ) thatch [ 0.00000 -1.00000 0.00000 1097.28540 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.50000 -0.50000
( -308 348 8 ) ( 0 0 209.31844 ) ( 0 0 8 ) thatch [ 0.00000 1.00000 0.00000 -789.02395 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.37442 -0.50000
( -308 348 8 ) ( 0 488 8 ) ( 0 0 209.31844 ) cottage_detail [ 0.99812 0.06123 0.00000 70.69558 ] [ -0.00541 -0.99999 0.00000 -193.60524 ] 0 4.93573 -4.62379
}
// Brush 8
// roof:g[3] -> poly:p[7]
{
( 316 -346 8 ) ( 0 0 8 ) ( 0 -488 8 ) thatch [ 0.92388 -0.38268 0.00000 -135.99500 ] [ -0.38268 -0.92388 0.00000 295.45362 ] 0 0.50000 -0.50000
( 0 0 200 ) ( 0 -488 8 ) ( 0 -488 -4.57650 ) thatch [ 0.00000 -1.00000 0.00000 -64.11935 ] [ 0.00000 0.00000 1.00000 248.00000 ] 0 0.50000 -0.50000
( 316 -346 8 ) ( 0 0 207.56932 ) ( 0 0 8 ) thatch [ 0.00000 1.00000 0.00000 18.96953 ] [ 0.00000 0.00000 1.00000 248.00000 ] 0 0.36920 -0.50000
( 316 -346 8 ) ( 0 -488 8 ) ( 0 0 207.56932 ) cottage_detail [ 0.99678 0.08015 0.00000 69.03813 ] [ -0.01819 0.99983 0.00000 -194.61980 ] 0 4.94439 -4.62263
}
// Brush 9
// roof:g[3] -> poly:p[8]
{
( -308 -346 8 ) ( 0 -488 8 ) ( 0 0 8 ) thatch [ 0.92388 0.38268 0.00000 362.60402 ] [ 0.38268 -0.92388 0.00000 368.93631 ] 0 0.50000 -0.50000
( 0 -488 8 ) ( 0 0 207.67236 ) ( 0 0 195.83986 ) thatch [ 0.00000 1.00000 0.00000 1088.20986 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.50000 -0.50000
( -308 -346 8 ) ( 0 0 8 ) ( 0 0 207.67236 ) thatch [ 0.00000 -1.00000 0.00000 -15.15178 ] [ 0.00000 0.00000 1.00000 248.00000 ] 0 0.37347 -0.50000
( -308 -346 8 ) ( 0 0 207.67236 ) ( 0 -488 8 ) cottage_detail [ 0.99812 -0.06123 0.00000 69.33918 ] [ -0.00541 0.99999 0.00000 -193.75852 ] 0 4.93469 -4.62928
}
// Brush 10
// poly:p[4]
{
( -312.19806 0 -324 ) ( -184.19804 0 -324 ) ( -312.19806 128.00002 -324 ) Floor_slate01 [ 0.00000 1.00000 0.00000 0.00000 ] [ 1.00000 0.00000 0.00000 -312.19803 ] 0 1.00000 -1.00000
( -312.19806 0 -308 ) ( -440.19806 0 -308 ) ( -312.19806 128.00002 -308 ) Floor_slate01 [ 0.00000 1.00000 0.00000 0.00000 ] [ -1.00000 0.00000 0.00000 312.19807 ] 0 1.00000 -1.00000
( -343 -62 -308 ) ( -343 62 -308 ) ( -343 62 -316 ) Floor_slate01 [ 0.00000 1.00000 0.00000 128.05273 ] [ 0.00000 0.00000 1.00000 -394.00000 ] 0 1.00000 -1.00000
( -400 62 -308 ) ( -400 -62 -316 ) ( -400 -62 -324 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 -0.00042 ] [ 0.00000 0.00000 1.00000 -394.00000 ] 0 1.00000 -1.00000
( -360 -62 -308 ) ( -376 -62 -324 ) ( -376 -62 -316 ) Floor_slate01 [ 1.00000 0.00000 0.00000 440.16902 ] [ 0.00000 0.00000 1.00000 -394.00000 ] 0 1.00000 -1.00000
( -376 62 -308 ) ( -360 62 -316 ) ( -360 62 -308 ) Floor_slate01 [ -1.00000 0.00000 0.00000 -313.01253 ] [ 0.00000 0.00000 1.00000 -394.00000 ] 0 1.00000 -1.00000
}
// Brush 11
// poly:p[5]
{
( -378 -62 -140 ) ( -360 62.22540 -140 ) ( -360 186.67618 -140 ) oak2 [ 0.00000 1.00000 0.00000 0.00000 ] [ 1.00000 0.00000 0.00000 -755.22459 ] 0 0.50000 -0.50000
( -378 -62 -134 ) ( -360 62.22540 -134 ) ( -360 -62.22540 -134 ) oak2 [ 0.00000 1.00000 0.00000 -256.00000 ] [ -1.00000 0.00000 0.00000 755.22456 ] 0 0.50000 -0.50000
( -359 62 -140 ) ( -359 -62 -120 ) ( -359 -62 -100 ) oak2 [ 0.00000 1.00000 0.00000 -128.09961 ] [ 0.00000 0.00000 1.00000 -305.99992 ] 0 0.50000 -0.50000
( -376 62 -120 ) ( -376 -62 -140 ) ( -376 -62 -160 ) oak2 [ 0.00000 -1.00000 0.00000 128.00854 ] [ 0.00000 0.00000 1.00000 -306.04905 ] 0 0.50000 -0.50000
( -378 -72 -140 ) ( -360 -72 -120 ) ( -360 -72 -140 ) oak2 [ 1.00000 0.00000 0.00000 755.20365 ] [ 0.00000 0.00000 1.00000 -306.00000 ] 0 0.50000 -0.50000
( -378 72 -120 ) ( -360 72 -140 ) ( -360 72 -120 ) oak2 [ -1.00000 0.00000 0.00000 -754.60675 ] [ 0.00000 0.00000 1.00000 -306.00000 ] 0 0.50000 -0.50000
}
// Brush 12
// poly:p[6]
{
( -313.61227 -33.94112 -316 ) ( -185.61226 -33.94112 -316 ) ( -313.61227 94.05888 -316 ) oak2 [ 0.00000 1.00000 0.00000 67.88225 ] [ 1.00000 0.00000 0.00000 -627.22455 ] 0 0.50000 -0.50000
( -313.61227 -33.94112 -134 ) ( -441.61227 -33.94112 -134 ) ( -313.61227 94.05888 -134 ) oak2 [ 0.00000 1.00000 0.00000 67.88225 ] [ -1.00000 0.00000 0.00000 627.22452 ] 0 0.50000 -0.50000
( -360 62 -308 ) ( -360 56 -96 ) ( -360 56 116 ) oak2 [ 0.00000 1.00000 0.00000 -62.66071 ] [ 0.00000 0.00000 1.00000 -386.00000 ] 0 0.50000 -0.50000
( -376 62 -96 ) ( -376 56 -308 ) ( -376 56 -520 ) oak2 [ 0.00000 -1.00000 0.00000 188.03433 ] [ 0.00000 0.00000 1.00000 -898.00000 ] 0 0.50000 -0.50000
( -378 56 -308 ) ( -360 56 -96 ) ( -360 56 -308 ) oak2 [ 1.00000 0.00000 0.00000 755.24364 ] [ 0.00000 0.00000 1.00000 -898.00000 ] 0 0.50000 -0.50000
( -378 62 -96 ) ( -360 62 -308 ) ( -360 62 -96 ) oak2 [ -1.00000 0.00000 0.00000 -755.22173 ] [ 0.00000 0.00000 1.00000 -2.00000 ] 0 0.50000 -0.50000
}
// Brush 13
// poly:p[7]
{
( -313.61227 -152.73506 -316 ) ( -185.61226 -152.73506 -316 ) ( -313.61227 -24.73506 -316 ) oak2 [ 0.00000 1.00000 0.00000 305.47013 ] [ 1.00000 0.00000 0.00000 -627.22455 ] 0 0.50000 -0.50000
( -313.61227 -152.73506 -134 ) ( -441.61227 -152.73506 -134 ) ( -313.61227 -24.73506 -134 ) oak2 [ 0.00000 1.00000 0.00000 305.47013 ] [ -1.00000 0.00000 0.00000 627.22452 ] 0 0.50000 -0.50000
( -360 -62 -96 ) ( -360 -56 -96 ) ( -360 -56 -308 ) oak2 [ 0.00000 1.00000 0.00000 180.01310 ] [ 0.00000 0.00000 1.00000 -2.00000 ] 0 0.50000 -0.50000
( -376 -62 -308 ) ( -376 -56 -308 ) ( -376 -56 -96 ) oak2 [ 0.00000 -1.00000 0.00000 -49.47437 ] [ 0.00000 0.00000 1.00000 -898.00000 ] 0 0.50000 -0.50000
( -360 -62 -96 ) ( -376 -62 -520 ) ( -376 -62 -308 ) oak2 [ 1.00000 0.00000 0.00000 755.22137 ] [ 0.00000 0.00000 1.00000 -386.00000 ] 0 0.50000 -0.50000
( -376 -56 -96 ) ( -360 -56 -308 ) ( -360 -56 -96 ) oak2 [ -1.00000 0.00000 0.00000 -755.24489 ] [ 0.00000 0.00000 1.00000 -2.00000 ] 0 0.50000 -0.50000
}
// Brush 14
// poly:p[8]
{
( -404 196 -367 ) ( -556 64 -367 ) ( -340 64 -367 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -404 196 -367 ) ( -340 64 -323 ) ( -445.93729 64 -323.76108 ) WALNOGROOVE [ -0.02178 0.99976 0.00000 -158.47730 ] [ -0.99976 -0.02178 0.00000 288.69020 ] 0 0.94965 -1.00000
( -340 64 -323 ) ( -556 64 -367 ) ( -445.93726 64 -323.76108 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -489.00970 193.98059 -367 ) ( -456.21799 64 -327.79993 ) ( -556 64 -367 ) WALNOGROOVE [ -0.45812 -0.88889 0.00000 -82.65050 ] [ 0.88889 -0.45812 0.00000 -527.48803 ] 0 1.00000 -0.91465
( -404 196 -367 ) ( -340 64 -367 ) ( -340 64 -323 ) WALNOGROOVE [ 0.00000 1.00000 0.00000 -135.12578 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 0.89981 -1.00000
}
// Brush 15
// poly:p[9]
{
( -556 -64 -367 ) ( -340 -64 -367 ) ( -340 64 -367 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -408 0 -323 ) ( -408 128 -323 ) ( -280 0 -323 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -408 -64 -387 ) ( -408 -64 -259 ) ( -280 -64 -387 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -408 64 -387 ) ( -408 64 -259 ) ( -536 64 -387 ) WALNOGROOVE [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -556 -64 -367 ) ( -444 64 -323 ) ( -444 -64 -323 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 0.00000 ] [ 1.00000 0.00000 0.00000 -541.03389 ] 0 1.00000 -0.93075
( -340 0 -387 ) ( -340 0 -259 ) ( -340 128 -387 ) WALNOGROOVE [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
}
// Brush 16
// poly:p[10]
{
( -556 -64 -531 ) ( -340 -64 -531 ) ( -340 64 -531 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -556 -64 -367 ) ( -340 192 -367 ) ( -340 64 -367 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -408 -64 -431 ) ( -408 -64 -303 ) ( -280 -64 -431 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -408 64 -431 ) ( -408 64 -303 ) ( -536 64 -431 ) concrete [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -556 -64 -367 ) ( -556 64 -411 ) ( -556 192 -411 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -354.66713 ] 0 1.00000 -1.00000
( -340 0 -431 ) ( -340 0 -303 ) ( -340 128 -431 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
}
// Brush 17
// poly:p[11]
{
( -556 64 -531 ) ( -340 64 -531 ) ( -340 192 -531 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -556 64 -367 ) ( -340 320 -367 ) ( -340 192 -367 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 1.00000 -1.00000
( -408 64 -431 ) ( -408 64 -303 ) ( -280 64 -431 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -364 124 -367 ) ( -488 192 -531 ) ( -488 192 -695 ) concrete [ -1.00000 0.00000 0.00000 -220.56147 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 0.87681 -1.00000
( -488 192 -531 ) ( -556 64 -367 ) ( -556 64 -531 ) concrete [ 0.00000 -1.00000 0.00000 392.47067 ] [ 0.00000 0.00000 1.00000 -610.66713 ] 0 0.88312 -1.00000
( -364 124 -367 ) ( -340 64 -531 ) ( -340 64 -367 ) concrete [ 0.00000 1.00000 0.00000 -132.93011 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 0.92848 -1.00000
}
// Brush 18
// poly:p[12]
{
( -556 -192 -531 ) ( -340 -192 -531 ) ( -340 -64 -531 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 128.00000 ] 0 1.00000 -1.00000
( -556 -192 -367 ) ( -340 64 -367 ) ( -340 -64 -367 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -412 -196 -367 ) ( -340 -168 -367 ) ( -340 -168 -531 ) concrete [ 1.00000 0.00000 0.00000 434.13429 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 0.93200 -1.00000
( -408 -64 -431 ) ( -408 -64 -303 ) ( -536 -64 -431 ) concrete [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -412 -196 -367 ) ( -556 -64 -695 ) ( -556 -64 -531 ) concrete [ 1.00000 0.00000 0.00000 946.25203 ] [ 0.00000 0.00000 1.00000 -610.66713 ] 0 0.73715 -1.00000
( -340 -168 -531 ) ( -340 -64 -203 ) ( -340 -64 -367 ) concrete [ 0.00000 1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
}
// Brush 19
// poly:p[13]
{
( -340 -168 -367 ) ( -340 -64 -367 ) ( -556 -64 -367 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -340 -168 -367 ) ( -444 -64 -323 ) ( -340 -64 -334.38873 ) WALNOGROOVE [ 0.32970 -0.94409 0.00000 44.77624 ] [ 0.94409 0.32970 0.00000 -507.41516 ] 0 0.94902 -1.00000
( -408 -64 -387 ) ( -408 -64 -259 ) ( -536 -64 -387 ) WALNOGROOVE [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -412 -196 -367 ) ( -556 -64 -367 ) ( -444 -64 -323 ) WALNOGROOVE [ 0.73715 -0.67572 0.00000 474.76945 ] [ 0.67572 0.73715 0.00000 -466.83977 ] 0 1.00000 -0.86451
( -340 -168 -367 ) ( -340 -64 -334.38873 ) ( -340 -64 -367 ) WALNOGROOVE [ 0.00000 1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
}
// Brush 20
// n-prism:g[14] -> prism-slice:p[1]
{
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( -294.15643 294.15643 -32 ) ( 0 416.00003 -32 ) ( -260.21530 260.21530 -352 ) stonewall [ 1.00000 0.00000 0.00000 320.22952 ] [ -0.05296 0.00000 0.99860 -32.30582 ] 0 0.92388 -0.99193
( -316.78384 316.78384 -32 ) ( -294.15643 294.15643 -32 ) ( -271.52899 271.52899 -352 ) stonewall [ 0.00000 -1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 0 416.00003 -32 ) ( 0 448 -32 ) ( 0 368 -352 ) stonewall [ 0.00000 1.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 0 448 -32 ) ( -316.78384 316.78384 -32 ) ( 0 383.99997 -352 ) cottage_detail [ -1.00000 0.00000 0.00000 134.89348 ] [ -0.07053 0.00000 0.99751 -218.16475 ] 0 2.67925 -2.85885
}
// Brush 21
// n-prism:g[14] -> prism-slice:p[2]
{
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 0 416.00003 -32 ) ( 294.15643 294.15643 -32 ) ( 0 368 -352 ) stonewall [ 1.00000 0.00000 0.00000 -1.83689 ] [ 0.05296 0.00000 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 0 448 -32 ) ( 0 416.00003 -32 ) ( 0 383.99997 -352 ) stonewall [ 0.00000 -1.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 294.15643 294.15643 -32 ) ( 316.78384 316.78384 -32 ) ( 260.21530 260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 316.78384 316.78384 -32 ) ( 0 448 -32 ) ( 271.52899 271.52899 -352 ) cottage_detail [ 1.00000 0.00000 0.00000 -122.17188 ] [ 0.07053 0.00000 0.99751 -215.23294 ] 0 2.67925 -2.85885
}
// Brush 22
// n-prism:g[14] -> prism-slice:p[3]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 294.15643 294.15643 -32 ) ( 416.00003 0 -32 ) ( 260.21530 260.21530 -352 ) stonewall [ 0.00000 -1.00000 0.00000 320.22952 ] [ 0.00000 0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 316.78384 316.78384 -32 ) ( 294.15643 294.15643 -32 ) ( 271.52899 271.52899 -352 ) stonewall [ 0.00000 -1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 416.00003 0 -32 ) ( 448 0 -32 ) ( 368 0 -352 ) stonewall [ 1.00000 0.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 448 0 -32 ) ( 316.78384 316.78384 -32 ) ( 383.99997 0 -352 ) cottage_detail [ 0.00000 -1.00000 0.00000 -4.36674 ] [ 0.00000 0.07053 0.99751 -216.54253 ] 0 2.67925 -2.85885
}
// Brush 23
// n-prism:g[14] -> prism-slice:p[4]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( 316.78384 -316.78384 -32 ) ( 448 0 -32 ) ( 271.52899 -271.52899 -352 ) cottage_detail [ 0.00000 1.00000 0.00000 254.84506 ] [ 0.00000 -0.07053 0.99751 -218.67496 ] 0 2.67925 -2.85885
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 416.00003 0 -32 ) ( 294.15643 -294.15643 -32 ) ( 368 0 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -1.83689 ] [ 0.00000 -0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 448 0 -32 ) ( 416.00003 0 -32 ) ( 383.99997 0 -352 ) stonewall [ -1.00000 0.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 294.15643 -294.15643 -32 ) ( 316.78384 -316.78384 -32 ) ( 260.21530 -260.21530 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
}
// Brush 24
// n-prism:g[14] -> prism-slice:p[5]
{
( 0 -448 -32 ) ( 316.78384 -316.78384 -32 ) ( 0 -383.99997 -352 ) cottage_detail [ 1.00000 0.00000 0.00000 -123.22489 ] [ 0.07053 0.00000 0.99751 36.93919 ] 0 2.67925 -2.85885
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 294.15643 -294.15643 -32 ) ( 0 -416.00003 -32 ) ( 260.21530 -260.21530 -352 ) stonewall [ -1.00000 0.00000 0.00000 320.22952 ] [ 0.05296 0.00000 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 316.78384 -316.78384 -32 ) ( 294.15643 -294.15643 -32 ) ( 271.52899 -271.52899 -352 ) stonewall [ 0.00000 1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 0 -416.00003 -32 ) ( 0 -448 -32 ) ( 0 -368 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
}
// Brush 25
// n-prism:g[14] -> prism-slice:p[6]
{
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 0 -416.00003 -32 ) ( -294.15643 -294.15643 -32 ) ( 0 -368 -352 ) stonewall [ -1.00000 0.00000 0.00000 -153.23968 ] [ -0.05296 0.00000 0.99860 -292.27698 ] 0 0.92388 -0.99193
( 0 -448 -32 ) ( 0 -416.00003 -32 ) ( 0 -383.99997 -352 ) stonewall [ 0.00000 1.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( -294.15643 -294.15643 -32 ) ( -316.78384 -316.78384 -32 ) ( -260.21530 -260.21530 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -316.78384 -316.78384 -32 ) ( 0 -448 -32 ) ( -271.52899 -271.52899 -352 ) cottage_detail [ 1.00000 0.00000 0.00000 254.48281 ] [ -0.07053 0.00000 0.99751 -218.23891 ] 0 2.67925 -2.85885
}
// Brush 26
// n-prism:g[14] -> prism-slice:p[7]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( -339.41125 0 -110 ) ( -467.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( -448 0 -32 ) ( -316.78384 -316.78384 -32 ) ( -383.99997 0 -352 ) cottage_detail [ 0.00000 -1.00000 0.00000 131.64687 ] [ 0.00000 -0.07053 0.99751 37.32247 ] 0 2.67925 -2.85885
( -416.00003 0 -32 ) ( -448 0 -32 ) ( -368 0 -352 ) stonewall [ -1.00000 0.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( -316.78384 -316.78384 -32 ) ( -294.15643 -294.15643 -32 ) ( -271.52899 -271.52899 -352 ) stonewall [ 0.00000 1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -294.15643 -294.15643 -32 ) ( -416.00003 0 -32 ) ( -260.21530 -260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 320.22952 ] [ 0.00000 -0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
}
// Brush 27
// n-prism:g[14] -> prism-slice:p[8]
{
( -358 -62 -352 ) ( -380.71878 -62 -96 ) ( -409.51877 -62 -96 ) oak2 [ -1.00000 0.00000 0.00000 -550.82251 ] [ 0.00000 0.00000 1.00000 -448.00000 ] 0 0.50000 -0.50000
( -358 -62 -352 ) ( -271.52899 -271.52899 -352 ) ( -260.21530 -260.21530 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05788 ] 0 1.00000 -1.00000
( -294.15643 -294.15643 -32 ) ( -416.00003 0 -32 ) ( -260.21530 -260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 320.22952 ] [ 0.00000 -0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( -316.78384 -316.78384 -32 ) ( -294.15643 -294.15643 -32 ) ( -271.52899 -271.52899 -352 ) stonewall [ 0.00000 1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -358 -62 -352 ) ( -409.51877 -62 -96 ) ( -307.73288 -307.73288 -96 ) cottage_detail [ 0.00000 -1.00000 0.00000 131.63874 ] [ 0.00000 -0.07097 0.99748 37.30570 ] 0 2.67925 -2.85835
( -339.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) ( -467.41125 0 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
}
// Brush 28
// n-prism:g[14] -> prism-slice:p[9]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( -339.41125 0 -110 ) ( -467.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( -316.78384 316.78384 -32 ) ( -448 0 -32 ) ( -271.52899 271.52899 -352 ) cottage_detail [ 0.00000 -1.00000 0.00000 255.55404 ] [ 0.00000 0.07053 0.99751 37.22023 ] 0 2.67925 -2.85885
( -294.15643 294.15643 -32 ) ( -316.78384 316.78384 -32 ) ( -260.21530 260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -448 0 -32 ) ( -416.00003 0 -32 ) ( -383.99997 0 -352 ) stonewall [ 1.00000 0.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( -416.00003 0 -32 ) ( -294.15643 294.15643 -32 ) ( -368 0 -352 ) stonewall [ 0.00000 1.00000 0.00000 -1.83689 ] [ 0.00000 0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
}
// Brush 29
// n-prism:g[14] -> prism-slice:p[10]
{
( -339.41125 62 -288 ) ( -467.41125 62.00001 -288 ) ( -339.41125 62 -160 ) oak2 [ 1.00000 0.00000 0.00000 678.82253 ] [ 0.00000 0.00000 1.00000 -576.00000 ] 0 0.50000 -0.50000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( -416.00003 0 -32 ) ( -294.15643 294.15643 -32 ) ( -368 0 -352 ) stonewall [ 0.00000 1.00000 0.00000 -1.83689 ] [ 0.00000 0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( -294.15643 294.15643 -32 ) ( -316.78384 316.78384 -32 ) ( -260.21530 260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -316.78384 316.78384 -32 ) ( -448 0 -32 ) ( -271.52899 271.52899 -352 ) cottage_detail [ 0.00000 -1.00000 0.00000 255.55581 ] [ 0.00000 0.07053 0.99751 37.20545 ] 0 2.67925 -2.85885
( -339.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) ( -467.41125 0 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
}
// Brush 30
// n-prism:g[16] -> prism-slice:p[1]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( -271.52899 271.52899 -316 ) ( 0 0 -316 ) ( -362.03867 362.03867 -516 ) concrete [ 0.00000 -1.00000 0.00000 60.58667 ] [ 0.00000 0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( 0 0 -316 ) ( 0 383.99997 -316 ) ( 0 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( 0 383.99997 -316 ) ( -271.52899 271.52899 -316 ) ( 0 512 -516 ) concrete [ -1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24002 ] 0 2.12132 -1.56250
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 31
// n-prism:g[16] -> prism-slice:p[2]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 0 383.99997 -316 ) ( 0 0 -316 ) ( 0 512 -516 ) concrete [ 0.00000 -1.00000 0.00000 60.58665 ] [ 0.00000 0.53905 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( 271.52899 271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( 271.52899 271.52899 -316 ) ( 0 383.99997 -316 ) ( 362.03867 362.03867 -516 ) concrete [ -1.00000 0.00000 0.00000 60.58666 ] [ 0.41229 0.00000 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 32
// n-prism:g[16] -> prism-slice:p[3]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 271.52899 271.52899 -316 ) ( 0 0 -316 ) ( 362.03867 362.03867 -516 ) concrete [ 0.00000 -1.00000 0.00000 60.58667 ] [ 0.00000 0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( 0 0 -316 ) ( 383.99997 0 -316 ) ( 0 0 -516 ) concrete [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( 383.99997 0 -316 ) ( 271.52899 271.52899 -316 ) ( 512 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24002 ] 0 2.12132 -1.56250
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 33
// n-prism:g[16] -> prism-slice:p[4]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 383.99997 0 -316 ) ( 0 0 -316 ) ( 512 0 -516 ) concrete [ -1.00000 0.00000 0.00000 60.58665 ] [ 0.53905 0.00000 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( 271.52899 -271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( 271.52899 -271.52899 -316 ) ( 383.99997 0 -316 ) ( 362.03867 -362.03867 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58666 ] [ 0.00000 -0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 34
// n-prism:g[16] -> prism-slice:p[5]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 271.52899 -271.52899 -316 ) ( 0 0 -316 ) ( 362.03867 -362.03867 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58667 ] [ 0.00000 -0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( 0 0 -316 ) ( 0 -383.99997 -316 ) ( 0 0 -516 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( 0 -383.99997 -316 ) ( 271.52899 -271.52899 -316 ) ( 0 -512 -516 ) concrete [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24002 ] 0 2.12132 -1.56250
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 35
// n-prism:g[16] -> prism-slice:p[6]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 0 -383.99997 -316 ) ( 0 0 -316 ) ( 0 -512 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58665 ] [ 0.00000 -0.53905 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( -271.52899 -271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( -271.52899 -271.52899 -316 ) ( 0 -383.99997 -316 ) ( -362.03867 -362.03867 -516 ) concrete [ 1.00000 0.00000 0.00000 60.58666 ] [ -0.41229 0.00000 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 36
// n-prism:g[16] -> prism-slice:p[7]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( -271.52899 -271.52899 -316 ) ( 0 0 -316 ) ( -362.03867 -362.03867 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58667 ] [ 0.00000 -0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -389.99997 0 -316 ) ( 0 0 -516 ) ( 0 0 -316 ) concrete [ -1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( -389.99997 0 -316 ) ( -271.52899 -271.52899 -316 ) ( -362.03870 -362.03870 -516 ) concrete [ 0.00000 -1.00000 0.00000 1.90366 ] [ 0.00000 -0.01332 -0.99991 202.88992 ] 0 2.10451 -1.55957
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 37
// n-prism:g[16] -> prism-slice:p[8]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( -389.99997 0 -316 ) ( 0 0 -316 ) ( 0 0 -516 ) concrete [ 1.00000 0.00000 0.00000 60.58665 ] [ -0.53905 0.00000 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( -271.52899 271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( -389.99997 0 -316 ) ( -362.03867 362.03867 -516 ) ( -271.52899 271.52899 -316 ) concrete [ 0.00000 -1.00000 0.00000 58.46637 ] [ 0.00000 0.42028 -0.90740 202.88989 ] 0 2.10451 -1.71858
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 38
// poly:p[17]
{
( -356 62 -134 ) ( -412 64 -134 ) ( -412.73248 95.82824 -134 ) oak2 [ -1.00000 0.00000 0.00000 -640.00000 ] [ 0.00000 -1.00000 0.00000 -168.00000 ] 0 0.50000 -0.50000
( -376 62 -358 ) ( -412.73248 95.82824 -110 ) ( -411.95526 62.05633 -110 ) oak2 [ 0.00000 0.00333 -0.99999 -190.24071 ] [ 0.00000 -1.00000 0.00000 -253.78166 ] 0 0.49483 -0.49987
( -325 62 -358 ) ( -356 62 -110 ) ( -355.99191 95.83032 -110 ) oak2 [ 0.00000 -0.00003 -1.00000 -180.29281 ] [ 0.00000 1.00000 0.00000 126.39584 ] 0 0.49614 -0.50000
( -325 62 -358 ) ( -411.95526 62.05633 -110 ) ( -356 62 -110 ) oak2 [ 0.00000 0.00000 -1.00000 -184.03269 ] [ 1.00000 0.00000 0.00000 -842.70375 ] 0 0.50000 -0.50000
( -346 96 -96 ) ( -382.72119 93.33807 -316 ) ( -329.99249 93.34000 -316 ) oak2 [ 0.00000 0.00000 1.00000 696.01209 ] [ 1.00000 0.00000 0.00000 -714.70500 ] 0 0.49996 -0.50000
( -325 62 -358 ) ( -376.70953 92.83036 -358 ) ( -376 62 -358 ) oak2 [ 0.00000 1.00000 0.00000 -158.39193 ] [ 1.00000 0.00000 0.00000 -738.94030 ] 0 0.50000 -0.50000
}
// Brush 39
// poly:p[18]
{
( -414 -62 -134 ) ( -358 -62 -134 ) ( -357.98538 -95.98513 -134 ) oak2 [ -1.00000 0.00000 0.00000 -768.00000 ] [ 0.00000 -1.00000 0.00000 88.00000 ] 0 0.50000 -0.50000
( -414 -62 -110 ) ( -378.03061 -85.60588 -358 ) ( -378 -62 -358 ) oak2 [ 0.00000 -0.00019 -1.00000 -187.36764 ] [ 0.00000 -1.00000 0.00000 179.03115 ] 0 0.49481 -0.50000
( -325 -62 -358 ) ( -357.98538 -95.98513 -110 ) ( -358 -62 -110 ) oak2 [ 0.00000 0.00006 -1.00000 -691.60461 ] [ 0.00000 1.00000 0.00000 -179.08738 ] 0 0.49563 -0.50000
( -414 -96 -110 ) ( -329.98911 -87.35181 -316 ) ( -384.03290 -87.36615 -316 ) oak2 [ -0.00001 0.00000 -1.00000 -568.40482 ] [ 1.00000 0.00000 0.00000 -726.01637 ] 0 0.49956 -0.50000
( -414 -62 -110 ) ( -378 -62 -358 ) ( -325 -62.02607 -358 ) oak2 [ 0.00000 0.00000 1.00000 311.88940 ] [ 1.00000 0.00000 0.00000 -854.02390 ] 0 0.50000 -0.50000
( -378 -62 -358 ) ( -324.98984 -85.59180 -358 ) ( -325 -62 -358 ) oak2 [ 0.00000 1.00000 0.00000 147.07821 ] [ 1.00000 0.00000 0.00000 -750.25397 ] 0 0.50000 -0.50000
}
// Brush 40
// poly:p[19]
{
( -340 -98 -134 ) ( -440 98 -134 ) ( -440 -98 -134 ) oak2 [ 1.00000 0.00000 0.00000 640.00000 ] [ 0.00000 -1.00000 0.00000 -40.00000 ] 0 0.50000 -0.50000
( -348 -98 -98 ) ( -442 98 -98 ) ( -442 294 -98 ) oak2 [ 1.00000 0.00000 0.00000 896.00000 ] [ 0.00000 1.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( -384 -98 -142 ) ( -384 -98 -14 ) ( -256 -98 -142 ) oak2_end [ 1.00000 0.00000 0.00000 563.20000 ] [ 0.00000 0.00000 1.00000 -476.44444 ] 0 0.78125 -0.28125
( -384 98 -142 ) ( -384 98 -14 ) ( -512 98 -142 ) oak2_end [ -1.00000 0.00000 0.00000 -435.20000 ] [ 0.00000 0.00000 1.00000 -476.44444 ] 0 0.78125 -0.28125
( -440 84 -142 ) ( -440 84 -14 ) ( -440 -44 -142 ) oak2 [ 0.00000 -1.00000 0.00000 168.00000 ] [ 0.00000 0.00000 1.00000 -284.00000 ] 0 0.50000 -0.50000
( -340 -98 -134 ) ( -348 98 -98 ) ( -348 294 -98 ) oak2 [ 0.00000 1.00000 0.00000 88.00000 ] [ 0.00000 0.00000 1.00000 -290.53756 ] 0 0.50000 -0.48809
}
}
// Entity 1
// detail:b[20]
{
"classname" "detail"
// Brush 0
// detail:b[20] -> poly:p[1]
{
( -322.44070 -345.06812 44 ) ( -271.52899 -294.15643 -352 ) ( -294.15643 -271.52899 -352 ) oak2 [ 0.00000 0.12752 -0.99184 125.49758 ] [ 0.00000 -1.00000 0.00000 832.00002 ] 0 0.49598 -0.35355
( -288.49957 -311.12698 60 ) ( -282.84271 -214.96046 -352 ) ( -260.21530 -237.58788 -352 ) oak2 [ 0.00000 0.12264 -0.99245 132.32400 ] [ 0.00000 1.00000 0.00000 -859.02913 ] 0 0.49628 -0.35355
( -313.95541 -336.58282 -448 ) ( -223.44574 -246.07317 -448 ) ( -313.95541 -336.58282 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 1.00000 0.00000 0.00000 -887.99992 ] 0 0.50000 -0.35355
( -336.58282 -313.95541 -448 ) ( -246.07317 -223.44574 -448 ) ( -336.58282 -313.95541 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 0.00000 1.00000 0.00000 -887.99993 ] 0 0.50000 -0.35355
( -288.49957 -311.12698 60 ) ( -345.06812 -322.44070 44 ) ( -367.69553 -299.81326 44 ) oak2_end [ -0.70711 0.70711 0.00000 64.00000 ] [ -0.70711 -0.70711 0.00000 1130.66658 ] 0 0.25000 -0.37500
( -237.58788 -260.21530 8 ) ( -294.15643 -271.52899 8 ) ( -271.52899 -294.15643 8 ) oak2_end [ -0.70711 0.70711 0.00000 64.00003 ] [ 0.70711 0.70711 0.00000 -1583.99984 ] 0 0.25000 -0.25000
}
// Brush 1
// detail:b[20] -> poly:p[2]
{
( -345.06812 322.44070 44 ) ( -294.15643 271.52899 -352 ) ( -271.52899 294.15643 -352 ) oak2 [ 0.00000 -0.12752 -0.99184 125.49758 ] [ 0.00000 -1.00000 0.00000 -1024.00002 ] 0 0.49598 -0.35355
( -311.12698 288.49957 60 ) ( -214.96046 282.84271 -352 ) ( -237.58788 260.21530 -352 ) oak2 [ 0.00000 -0.12264 -0.99245 132.32400 ] [ 0.00000 1.00000 0.00000 795.02913 ] 0 0.49628 -0.35355
( -336.58282 313.95541 -448 ) ( -246.07317 223.44574 -448 ) ( -336.58282 313.95541 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 0.00000 -1.00000 0.00000 -887.99992 ] 0 0.50000 -0.35355
( -313.95541 336.58282 -448 ) ( -223.44574 246.07317 -448 ) ( -313.95541 336.58282 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 1.00000 0.00000 0.00000 -887.99993 ] 0 0.50000 -0.35355
( -311.12698 288.49957 60 ) ( -322.44070 345.06812 44 ) ( -299.81326 367.69553 44 ) oak2_end [ 0.70711 0.70711 0.00000 64.00000 ] [ -0.70711 0.70711 0.00000 1130.66658 ] 0 0.25000 -0.37500
( -260.21530 237.58788 8 ) ( -271.52899 294.15643 8 ) ( -294.15643 271.52899 8 ) oak2_end [ 0.70711 0.70711 0.00000 64.00003 ] [ 0.70711 -0.70711 0.00000 -1583.99984 ] 0 0.25000 -0.25000
}
// Brush 2
// detail:b[20] -> poly:p[3]
{
( -16 467.29352 44 ) ( -16 395.29352 -352 ) ( 16 395.29352 -352 ) oak2 [ 0.00000 0.00000 -1.00000 125.49757 ] [ -1.00000 0.00000 0.00000 -96.00000 ] 0 0.49193 -0.50000
( -16 419.29349 60 ) ( 47.99999 347.29352 -352 ) ( 16 347.29352 -352 ) oak2 [ 0.00000 0.00000 -1.00000 132.32400 ] [ 1.00000 0.00000 0.00000 -32.00000 ] 0 0.49254 -0.50000
( -18.17157 455.29349 -448 ) ( -18.17158 327.29352 -448 ) ( -18.17157 455.29349 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 0.00000 -1.00000 0.00000 -910.58695 ] 0 0.50000 -0.50000
( 18.82842 455.29349 -448 ) ( 18.82844 327.29352 -448 ) ( 18.82842 455.29349 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 0.00000 -1.00000 0.00000 -910.58696 ] 0 0.50000 -0.50000
( -16 419.29349 60 ) ( 16 467.29352 44 ) ( 47.99999 467.29352 44 ) oak2_end [ 1.00000 0.00000 0.00000 64.00000 ] [ 0.00000 1.00000 0.00000 1118.11589 ] 0 0.25000 -0.37500
( -16 347.29352 8 ) ( 16 395.29352 8 ) ( -16 395.29352 8 ) oak2_end [ 1.00000 0.00000 0.00000 64.00000 ] [ 0.00000 -1.00000 0.00000 -1565.17383 ] 0 0.25000 -0.25000
}
// Brush 3
// detail:b[20] -> poly:p[4]
{
( 467.29352 16 44 ) ( 395.29352 16 -352 ) ( 395.29352 -16 -352 ) oak2 [ 0.00000 0.00000 -1.00000 125.49757 ] [ 0.00000 1.00000 0.00000 -96.00001 ] 0 0.49193 -0.50000
( 419.29349 16 60 ) ( 347.29352 -47.99999 -352 ) ( 347.29352 -16 -352 ) oak2 [ 0.00000 0.00000 -1.00000 132.32400 ] [ 0.00000 -1.00000 0.00000 -31.99999 ] 0 0.49254 -0.50000
( 455.29349 16 -448 ) ( 327.29352 16 -448 ) ( 455.29349 16 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ -1.00000 0.00000 0.00000 -910.58700 ] 0 0.50000 -0.50000
( 455.29349 -16 -448 ) ( 327.29352 -16.00002 -448 ) ( 455.29349 -16 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ -1.00000 0.00000 0.00000 -910.58701 ] 0 0.50000 -0.50000
( 419.29349 16 60 ) ( 467.29352 -16 44 ) ( 467.29352 -48 44 ) oak2_end [ 0.00000 -1.00000 0.00000 63.99998 ] [ 1.00000 0.00000 0.00000 1118.11595 ] 0 0.25000 -0.37500
( 347.29352 16 16 ) ( 395.29352 -16 16 ) ( 395.29352 16 16 ) oak2_end [ 0.00000 -1.00000 0.00000 64.00004 ] [ -1.00000 0.00000 0.00000 -1565.17395 ] 0 0.25000 -0.25000
}
// Brush 4
// detail:b[20] -> poly:p[5]
{
( 16 -467.29352 44 ) ( 16 -395.29352 -352 ) ( -16 -395.29352 -352 ) oak2 [ 0.00000 0.00000 -1.00000 125.49757 ] [ 1.00000 0.00000 0.00000 -96.00001 ] 0 0.49194 -0.50000
( 16 -419.29349 60 ) ( -47.99999 -347.29352 -352 ) ( -16 -347.29352 -352 ) oak2 [ 0.00000 0.00000 -1.00000 132.32400 ] [ -1.00000 0.00000 0.00000 -31.99999 ] 0 0.49254 -0.50000
( 18 -455.29349 -448 ) ( 18 -327.29352 -448 ) ( 18 -455.29349 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 0.00000 1.00000 0.00000 -910.58705 ] 0 0.50000 -0.50000
( -18 -455.29349 -448 ) ( -18.00001 -327.29352 -448 ) ( -18 -455.29349 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 0.00000 1.00000 0.00000 -910.58705 ] 0 0.50000 -0.50000
( 16 -419.29349 60 ) ( -16 -467.29352 44 ) ( -48 -467.29352 44 ) oak2_end [ -1.00000 0.00000 0.00000 63.99998 ] [ 0.00000 -1.00000 0.00000 1118.11601 ] 0 0.25000 -0.37500
( 16 -347.29352 8 ) ( -16 -395.29352 8 ) ( 16 -395.29352 8 ) oak2_end [ -1.00000 0.00000 0.00000 64.00003 ] [ 0.00000 1.00000 0.00000 -1565.17390 ] 0 0.25000 -0.25000
}
// Brush 5
// detail:b[20] -> poly:p[6]
{
( -339.41125 0 16 ) ( -467.41125 0 16 ) ( -339.41125 -128.00002 16 ) oak2 [ 0.00000 1.00000 0.00000 0.00000 ] [ 1.00000 0.00000 0.00000 -678.82251 ] 0 0.50000 -0.50000
( -419.29349 -16 60 ) ( -467.29352 16 44 ) ( -467.29352 48 44 ) oak2_end [ 0.00000 1.00000 0.00000 63.99998 ] [ -1.00000 0.00000 0.00000 1118.11606 ] 0 0.25000 -0.37500
( -455.29349 16 -448 ) ( -327.29352 16.00002 -448 ) ( -455.29349 16 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 1.00000 0.00000 0.00000 -910.58710 ] 0 0.50000 -0.50000
( -455.29349 -16 -448 ) ( -327.29352 -16 -448 ) ( -455.29349 -16 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 1.00000 0.00000 0.00000 -910.58709 ] 0 0.50000 -0.50000
( -419.29349 -16 60 ) ( -347.29352 47.99999 -352 ) ( -347.29352 16 -352 ) oak2 [ 0.00000 0.00000 -1.00000 132.32400 ] [ 0.00000 1.00000 0.00000 -31.99999 ] 0 0.49254 -0.50000
( -467.29352 -16 44 ) ( -395.29352 -16 -352 ) ( -395.29352 16 -352 ) oak2 [ 0.00000 0.00000 -1.00000 125.49757 ] [ 0.00000 -1.00000 0.00000 -96.00001 ] 0 0.49194 -0.50000
}
// Brush 6
// detail:b[20] -> poly:p[7]
{
( 322.44070 345.06812 44 ) ( 271.52899 294.15643 -352 ) ( 294.15643 271.52899 -352 ) oak2 [ 0.00000 -0.12752 -0.99184 125.49758 ] [ 0.00000 1.00000 0.00000 832.00002 ] 0 0.49598 -0.35355
( 288.49957 311.12698 60 ) ( 282.84271 214.96046 -352 ) ( 260.21530 237.58788 -352 ) oak2 [ 0.00000 -0.12264 -0.99245 132.32400 ] [ 0.00000 -1.00000 0.00000 -859.02913 ] 0 0.49628 -0.35355
( 313.95541 336.58282 -448 ) ( 223.44574 246.07317 -448 ) ( 313.95541 336.58282 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ -1.00000 0.00000 0.00000 -887.99992 ] 0 0.50000 -0.35355
( 336.58282 313.95541 -448 ) ( 246.07317 223.44574 -448 ) ( 336.58282 313.95541 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ 0.00000 -1.00000 0.00000 -887.99993 ] 0 0.50000 -0.35355
( 288.49957 311.12698 60 ) ( 345.06812 322.44070 44 ) ( 367.69553 299.81326 44 ) oak2_end [ 0.70711 -0.70711 0.00000 64.00000 ] [ 0.70711 0.70711 0.00000 1130.66658 ] 0 0.25000 -0.37500
( 237.58788 260.21530 8 ) ( 294.15643 271.52899 8 ) ( 271.52899 294.15643 8 ) oak2_end [ 0.70711 -0.70711 0.00000 64.00003 ] [ -0.70711 -0.70711 0.00000 -1583.99984 ] 0 0.25000 -0.25000
}
// Brush 7
// detail:b[20] -> poly:p[8]
{
( 349.06812 -322.44070 44 ) ( 298.15643 -271.52899 -352 ) ( 275.52899 -294.15643 -352 ) oak2 [ 0.00000 0.12752 -0.99184 125.49758 ] [ 0.00000 1.00000 0.00000 -1024.00002 ] 0 0.49598 -0.35355
( 315.12698 -288.49957 60 ) ( 218.96046 -282.84271 -352 ) ( 241.58788 -260.21530 -352 ) oak2 [ 0.00000 0.12264 -0.99245 132.32400 ] [ 0.00000 -1.00000 0.00000 795.02913 ] 0 0.49628 -0.35355
( 340.58282 -313.95541 -448 ) ( 250.07317 -223.44574 -448 ) ( 340.58282 -313.95541 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 0.00000 1.00000 0.00000 -887.99992 ] 0 0.50000 -0.35355
( 317.95541 -336.58282 -448 ) ( 227.44574 -246.07317 -448 ) ( 317.95541 -336.58282 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ -1.00000 0.00000 0.00000 -899.31364 ] 0 0.50000 -0.35355
( 315.12698 -288.49957 60 ) ( 326.44070 -345.06812 44 ) ( 303.81326 -367.69553 44 ) oak2_end [ -0.70711 -0.70711 0.00000 75.31371 ] [ 0.70711 -0.70711 0.00000 1138.20905 ] 0 0.25000 -0.37500
( 264.21530 -237.58788 8 ) ( 275.52899 -294.15643 8 ) ( 298.15643 -271.52899 8 ) oak2_end [ -0.70711 -0.70711 0.00000 75.31370 ] [ -0.70711 0.70711 0.00000 -1595.31358 ] 0 0.25000 -0.25000
}
// Brush 8
// detail:b[20] -> poly:p[11]
{
( -217.17157 -13.17157 219 ) ( -217.17157 -141.17157 219 ) ( -345.17160 -13.17158 219 ) oak2 [ -1.00000 0.00000 0.00000 -434.34316 ] [ 0.00000 -1.00000 0.00000 26.34314 ] 0 0.50000 -0.50000
( 467 -16 187 ) ( -467 19 187 ) ( -467 -15 187 ) oak2 [ -1.00000 0.00000 0.00000 -562.34314 ] [ 0.00000 1.00000 0.00000 101.65686 ] 0 0.50000 -0.50000
( -467 -16 219 ) ( 468 -16 187 ) ( 468 -16 155 ) oak2 [ -1.00000 0.00000 0.00000 -946.35168 ] [ 0.00000 0.00000 -1.00000 -438.00000 ] 0 0.50000 -0.50000
( 468 19 219 ) ( -467 19 219 ) ( -467 19 187 ) oak2 [ 1.00000 0.00000 0.00000 946.34387 ] [ 0.00000 0.00000 -1.00000 -438.00000 ] 0 0.50000 -0.50000
( 468 -16 187 ) ( 468 19 251 ) ( 468 19 219 ) oak2_end [ 0.00000 -1.00000 0.00000 75.72875 ] [ 0.00000 0.00000 -1.00000 -876.00000 ] 0 0.25000 -0.25000
( -467 -16 219 ) ( -467 19 155 ) ( -467 19 187 ) oak2_end [ 0.00000 1.00000 0.00000 52.68534 ] [ 0.00000 0.00000 -1.00000 -876.00009 ] 0 0.25000 -0.25000
}
// Brush 9
// detail:b[20] -> poly:p[12]
{
( -287.94806 -106.85542 276.00003 ) ( -294 283.99994 8.00003 ) ( -326 283.99994 8 ) oak2 [ 0.00000 1.00000 0.00000 315.30269 ] [ 1.00000 0.00000 0.00000 -703.89611 ] 0 0.41237 -0.50000
( -287.94806 342.67569 8 ) ( -319.94806 -87.85539 304 ) ( -359.01910 -87.85542 304 ) oak2 [ 0.00000 1.00000 0.00000 256.63783 ] [ -1.00000 0.00000 0.00000 575.89620 ] 0 0.41202 -0.50000
( -288 284 8 ) ( -287.94806 -87.85542 264.00003 ) ( -287.94806 -87.85539 304 ) oak2 [ 0.00000 0.70711 -0.70711 -535.49804 ] [ 0.00000 0.70711 0.70711 571.38027 ] 0 0.50000 -0.50000
( -326 284 8 ) ( -319.94806 -87.85539 304 ) ( -319.94806 -87.85542 264 ) oak2 [ 0.00000 -0.70706 0.70715 -488.51849 ] [ 0.00000 0.70706 0.70715 187.36372 ] 0 0.49997 -0.49997
( -287.94806 -106.85542 276.00003 ) ( -319.94806 -87.85539 304 ) ( -287.94806 -87.85539 304.00003 ) oak2_end [ 1.00000 0.00000 0.00000 1407.79219 ] [ 0.00000 0.00000 1.00000 1273.45695 ] 0 0.25000 -0.20687
( -288 284 8 ) ( -287.94806 342.67569 8 ) ( -326.95496 342.67566 8 ) oak2_end [ 0.00000 1.00000 0.00000 -1280.57820 ] [ 1.00000 0.00000 0.00000 -1218.01814 ] 0 0.25000 -0.25000
}
// Brush 10
// detail:b[20] -> poly:p[13]
{
( 325.82053 -104.26963 273.97229 ) ( 323.28146 284.50824 8 ) ( 291.35199 284.50818 8 ) oak2 [ 0.00000 1.00000 0.00000 315.40879 ] [ 1.00000 0.00000 0.00000 517.98559 ] 0 0.41267 -0.50000
( 322.95358 339.84726 8 ) ( 294.52771 -91.39093 306.48795 ) ( 262.51831 -91.39091 306.48795 ) oak2 [ 0.00000 1.00000 0.00000 257.05437 ] [ -1.00000 0.00000 0.00000 -645.98444 ] 0 0.41112 -0.50000
( 325.82053 -104.26963 273.97229 ) ( 322.90555 339.84726 8 ) ( 323.28146 284.50824 8 ) oak2 [ 0.00000 0.70710 -0.70711 -407.50853 ] [ 0.00000 0.70710 0.70712 443.39058 ] 0 0.49999 -0.49999
( 294.52771 -91.39098 264 ) ( 290.99225 327.09195 -27.99997 ) ( 290.99222 327.09198 12 ) oak2 [ 0.00000 -0.70709 0.70712 279.51443 ] [ 0.00000 0.70709 0.70712 571.39664 ] 0 0.49999 -0.49999
( 325.82053 -104.26963 273.97229 ) ( 294.52768 -91.39093 306.48795 ) ( 325.82053 -89.26958 305.01962 ) oak2_end [ 1.00000 0.00000 0.00000 -1350.31329 ] [ -0.04331 0.00000 0.99906 1282.46381 ] 0 0.24898 -0.22549
( 322.95358 339.84726 8 ) ( 291.35199 284.50818 8 ) ( 323.36136 284.50818 8 ) oak2_end [ 0.00000 1.00000 0.00000 -1152.57835 ] [ 1.00000 0.00000 0.00000 1225.74289 ] 0 0.25000 -0.25000
}
// Brush 11
// detail:b[20] -> poly:p[14]
{
( 286.74966 110.44115 275.02771 ) ( 289.58368 -284.50821 8 ) ( 322.99219 -284.50821 8 ) oak2 [ 0.00000 -1.00000 0.00000 317.97404 ] [ -1.00000 0.00000 0.00000 -709.98441 ] 0 0.41421 -0.50000
( 290 -339 8 ) ( 286.74966 86.44120 303.02130 ) ( 322.99231 87.85542 304.00003 ) oak2 [ 0.00008 -1.00000 0.00000 257.16890 ] [ 1.00000 0.00008 0.00000 581.99804 ] 0 0.41088 -0.50000
( 286.74966 110.44115 275.02771 ) ( 290 -339 8 ) ( 289.58368 -284.50821 8 ) oak2 [ 0.00000 -0.70710 -0.70712 616.47490 ] [ 0.00000 -0.70709 0.70712 187.40712 ] 0 0.49999 -0.49999
( 322.99219 -300.83087 12.68628 ) ( 322.99219 -391.34055 103.19592 ) ( 322.99222 -210.32124 103.19592 ) oak2 [ 0.00000 0.70711 0.70711 407.49800 ] [ 0.00000 -0.70711 0.70711 443.38026 ] 0 0.50000 -0.50000
( 286.74966 110.44115 275.02771 ) ( 322.99231 87.85542 304.00003 ) ( 286.74966 86.44120 303.02130 ) oak2_end [ -1.00000 0.00000 0.00000 1229.77126 ] [ 0.05302 0.00000 0.99859 1276.34054 ] 0 0.24952 -0.19022
( 290 -339 8 ) ( 322.99219 -284.50821 8 ) ( 290.50372 -284.50821 8 ) oak2_end [ -1.00000 0.00000 0.00000 1291.96886 ] [ 0.00000 1.00000 0.00000 -1217.48292 ] 0 0.25000 -0.25000
}
// Brush 12
// detail:b[20] -> poly:p[15]
{
( -319.94791 111.85537 275.99997 ) ( -313.68826 -284.50827 7.99997 ) ( -281.68839 -284.50824 8 ) oak2 [ 0.00000 -1.00000 0.00000 317.96047 ] [ -1.00000 0.00000 0.00000 511.89612 ] 0 0.41420 -0.50000
( -319.94806 -339.84723 8 ) ( -287.94803 87.85542 304.00003 ) ( -248.82942 87.85544 304.00003 ) oak2 [ 0.00000 -1.00000 0.00000 257.09224 ] [ 1.00000 0.00000 0.00000 -511.89613 ] 0 0.41114 -0.50000
( -319.94803 -300.83087 12.68628 ) ( -319.94806 -391.34055 103.19592 ) ( -319.94806 -391.34055 -77.82336 ) oak2 [ 0.00000 -0.70711 -0.70711 -407.49802 ] [ 0.00000 -0.70711 0.70711 443.38029 ] 0 0.50000 -0.50000
( -280.87698 -332.77615 8 ) ( -287.94803 87.85542 304.00003 ) ( -287.94803 87.85539 264 ) oak2 [ 0.00000 0.70706 0.70716 279.48046 ] [ 0.00000 -0.70706 0.70716 571.36268 ] 0 0.49996 -0.49996
( -319.94791 111.85537 275.99997 ) ( -287.94803 87.85543 304.00003 ) ( -319.94791 87.85541 304 ) oak2_end [ -1.00000 0.00000 0.00000 -1023.79372 ] [ 0.00000 0.00000 1.00000 1405.49167 ] 0 0.25000 -0.18981
( -319.94806 -339.84723 8 ) ( -281.68845 -284.50824 8 ) ( -320.80701 -284.50824 8 ) oak2_end [ -1.00000 0.00000 0.00000 -1151.79227 ] [ 0.00000 1.00000 0.00000 -1217.48292 ] 0 0.25000 -0.25000
}
}
// Entity 2
// light_omni:e[21]
{
"classname" "light_omni"
"origin" "-212 -212 -196"
"color" "192 160 140"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1500"
}
// Entity 3
// light_omni:e[22]
{
"classname" "light_omni"
"origin" "212 -212 -196"
"color" "192 160 140"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1500"
}
// Entity 4
// light_omni:e[23]
{
"classname" "light_omni"
"origin" "212 212 -196"
"color" "192 160 140"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1500"
}
// Entity 5
// light_omni:e[24]
{
"classname" "light_omni"
"origin" "-212 212 -196"
"color" "192 160 140"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1500"
}
// Entity 6
// light_omni:e[25]
{
"classname" "light_omni"
"origin" "-359 0 -147"
"color" "245 245 255"
"alarm_type" "0"
"falloff1" "200"
"falloff2" "3000"
}
// Entity 7
// portal:b[26]
{
"classname" "portal"
"ambient_light" "0"
// Brush 0
// portal:b[26] -> poly:p[1]
{
( -360.03867 -62.22540 -308 ) ( -362.86710 64.34672 -308 ) ( -362.86710 -63.63960 -308 ) NULL [ 0.00000 1.00000 0.00000 4.42915 ] [ 1.00000 0.00000 0.00000 -338.07166 ] 0 1.00000 -1.00000
( -362.86710 -65.05383 -140 ) ( -360.03864 64.34670 -140 ) ( -360.03867 -63.63962 -140 ) NULL [ 0.00000 1.00000 0.00000 -32.15292 ] [ -1.00000 0.00000 0.00000 279.07508 ] 0 1.00000 -1.00000
( -360 56 -308 ) ( -360 -56 -116 ) ( -360 -56 76 ) NULL [ 0.00000 1.00000 0.00000 -56.48529 ] [ 0.00000 0.00000 1.00000 -209.65101 ] 0 1.00000 -1.00000
( -376 -56 -308 ) ( -376 56.00001 -308 ) ( -376 56 -116 ) NULL [ 0.00000 -1.00000 0.00000 -55.52045 ] [ 0.00000 0.00000 1.00000 -401.15082 ] 0 1.00000 -1.00000
( -364 -56 -308 ) ( -360 -56 -116 ) ( -360 -55.99999 -308 ) NULL [ 1.00000 0.00000 0.00000 370.88033 ] [ 0.00000 0.00000 1.00000 -416.00000 ] 0 1.00000 -1.00000
( -360 56 -308 ) ( -364 56 76 ) ( -364 56 -116 ) NULL [ -1.00000 0.00000 0.00000 -354.88030 ] [ 0.00000 0.00000 1.00000 -224.00000 ] 0 1.00000 -1.00000
}
}

View File

@@ -0,0 +1,455 @@
// This map has been written by QuArK - Quake Army Knife, QuArK 6.3
// It is a map for the game Torque.
// For more information see QuArK's Home Page : http://www.planetquake.com/quark
// Entity 0
// worldspawn
{
"classname" "worldspawn"
"detail_number" "4"
"min_pixels" "0"
"geometry_scale" "32.0"
"light_geometry_scale" "16.0"
"ambient_color" "0 0 0"
"emergency_ambient_color" "0 0 0"
"mapversion" "220"
"oldstyle_lighting" "0"
"rad_subdivision_u" "4"
"rad_subdivision_v" "4"
"rad_arealight_multiplier" "100000"
"rad_pointlight_multiplier" "1.0"
"rad_convergence" "1.0"
"rad_iteration_limiter" "1024"
"rad_directlight_only" "0"
"rad_use_nusselts" "0"
"rad_ambientterm" "0"
"rad_adaptive_degradation" "1"
"rad_adaptive_threshold" "15"
"rad_adaptive_max_x" "128"
"rad_adaptive_max_y" "128"
"rad_defaultreflectivity" ".38 .38 .38"
"rad_defaultemissioncolor" "0.0 0.0 0.0"
"rad_defaultemissionintensity" "0.0"
"rad_octree_threshold" "50000"
"rad_octree_minnoderadius" "5.0"
"rad_octree_maxtreedepth" "50"
"rad_bsp_gaussian" "8"
"rad_bsp_searchrange" "5"
"rad_lightmap_gamma" "1.0"
"rad_lightmap_width" "256"
"rad_lightmap_height" "256"
// Brush 0
// n-prism:p[1]
{
( -8.09453 426.02823 -40.50000 ) ( -8.09453 426.02823 -39.50000 ) ( -311.77960 302.07590 -40.50000 ) concrete [ -1.00000 0.00000 0.00000 -3.41176 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.37254 -0.00781
( -311.77960 302.07590 -40.50000 ) ( -311.77960 302.07590 -39.50000 ) ( -434 0 -40.50000 ) concrete [ 0.00000 -1.00000 0.00000 128.00001 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.35997 -0.00781
( -434 0 -40.50000 ) ( -434 0 -39.50000 ) ( -303.16064 -303.24747 -40.50000 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.36912 -0.00781
( -303.16064 -303.24747 -40.50000 ) ( -303.16064 -303.24747 -39.50000 ) ( 4.09453 -430.02823 -40.50000 ) concrete [ 1.00000 0.00000 0.00000 126.29425 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.40043 -0.00781
( 4.09453 -430.02823 -40.50000 ) ( 4.09453 -430.02823 -39.50000 ) ( 307.77960 -306.07590 -40.50000 ) concrete [ 1.00000 0.00000 0.00000 -1.72580 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.37254 -0.00781
( 307.77960 -306.07590 -40.50000 ) ( 307.77960 -306.07590 -39.50000 ) ( 430 -4 -40.50000 ) concrete [ 0.00000 1.00000 0.00000 129.69495 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.35997 -0.00781
( 430 -4 -40.50000 ) ( 430 -4 -39.50000 ) ( 299.16064 299.24747 -40.50000 ) concrete [ 0.00000 1.00000 0.00000 1.68839 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.36912 -0.00781
( 299.16064 299.24747 -40.50000 ) ( 299.16064 299.24747 -39.50000 ) ( -8.09453 426.02823 -40.50000 ) concrete [ -1.00000 0.00000 0.00000 124.62788 ] [ 0.00000 0.00000 1.00000 -5184.00000 ] 0 2.40043 -0.00781
( -429.76285 -297.58151 -40.50000 ) ( -427.90549 -428.02823 -40.50000 ) ( -298.10574 -298.19104 -40.50000 ) concrete [ 0.99999 -0.00463 0.00000 421.97227 ] [ 0.01424 -0.99990 0.00000 293.97171 ] 0 1.02858 -1.01922
( -427.90549 -428.02823 16 ) ( -429.76285 -297.58151 16 ) ( -296.24832 -428.63773 16 ) concrete [ 0.99999 -0.00463 0.00000 421.97223 ] [ -0.01424 0.99990 0.00000 -421.97172 ] 0 1.02858 -1.01922
}
// Brush 1
// poly:p[2]
{
( -308 -346 8 ) ( -176 348 8 ) ( -308 348 8 ) concrete [ 1.00000 0.00000 0.00000 240.00000 ] [ 0.00000 -1.00000 0.00000 -400.00000 ] 0 1.00000 -1.00000
( -308 2 208 ) ( -176 -346 8 ) ( -308 -346 8 ) cottage_detail [ 1.00000 0.00000 0.00000 68.93999 ] [ 0.00000 1.00000 0.00000 -192.50844 ] 0 5.00000 -4.33507
( -308 2 208 ) ( -176 348 8 ) ( -44 348 8 ) cottage_detail [ -1.00000 0.00000 0.00000 67.86000 ] [ 0.00000 -1.00000 0.00000 -194.21755 ] 0 5.00000 -4.32884
( -308 -112 72 ) ( -308 -112 200 ) ( -308 -240 72 ) cottage_detail [ 0.00000 -1.00000 0.00000 127.31935 ] [ 0.00000 0.00000 1.00000 -0.84720 ] 0 2.64453 -2.71484
( 316 -112 72 ) ( 316 -112 200 ) ( 316 16 72 ) cottage_detail [ 0.00000 1.00000 0.00000 125.32596 ] [ 0.00000 0.00000 1.00000 -2.34760 ] 0 2.54297 -2.68359
}
// Brush 2
// roof:g[3] -> prism-slice:p[1]
{
( -308 280 16 ) ( -442 0 16 ) ( -408 0 16 ) thatch [ 0.70711 -0.70711 0.00000 640.00006 ] [ -0.70711 -0.70711 0.00000 639.99989 ] 0 0.50000 -0.50000
( -308 0 56 ) ( -408 0 16 ) ( -442 0 16 ) thatch [ 1.00000 0.00000 0.00000 966.39997 ] [ 0.19612 0.00000 0.98058 32.63372 ] 0 0.50000 -0.50000
( -302 280 16 ) ( -302 0 56 ) ( -302 0 63.85714 ) thatch [ 0.00000 1.00000 0.00000 -49.11285 ] [ 0.00000 -0.14834 0.98894 32.35775 ] 0 0.50000 -0.50000
( -308 284 16 ) ( -308 0 63.85714 ) ( -442 0 16 ) thatch [ -0.42672 -0.90439 0.00000 -267.80139 ] [ 0.86702 -0.49827 0.00000 -874.03136 ] 0 0.50000 -0.46526
}
// Brush 3
// roof:g[3] -> prism-slice:p[2]
{
( -308 -280 16 ) ( -408 0 16 ) ( -442.38437 0 15.86273 ) thatch [ 0.42808 0.90374 0.00000 480.27819 ] [ 0.90374 -0.42809 0.00000 -721.73688 ] 0 0.50000 -0.50000
( -301.98843 -280.00156 16.01084 ) ( -302.00259 -0.00155 63.86293 ) ( -301.98843 -0.00155 56.01084 ) thatch [ 0.00000 1.00000 0.00000 608.47658 ] [ 0.00000 0.19612 0.98058 -220.64377 ] 0 0.50000 -0.50000
( -308 0 56 ) ( -442.38437 0 15.86273 ) ( -408 0 16 ) thatch [ -1.00000 0.00000 0.00000 -652.98687 ] [ 0.14834 0.00000 0.98894 35.05452 ] 0 0.50000 -0.50000
( -308 -292 16 ) ( -442.38437 0 15.86273 ) ( -308.00342 0 63.85592 ) thatch [ 0.41708 -0.90887 0.00000 80.82618 ] [ 0.93953 0.34247 0.00000 -871.34205 ] 0 0.50000 -0.46556
}
// Brush 4
// roof:g[3] -> prism-slice:p[3]
{
( 436 0 16 ) ( 306 310 16 ) ( 306 288.78281 16 ) thatch [ -0.70711 -0.70711 0.00000 887.96195 ] [ 0.70711 -0.70711 0.00000 -132.46670 ] 0 0.50000 -0.50000
( 406 0 16 ) ( 306 288.78284 16 ) ( 306 0 55.76558 ) thatch [ -0.32722 0.94495 0.00000 58.04204 ] [ -0.96330 -0.26841 0.00000 -723.95227 ] 0 0.50000 -0.46099
( 436 0 16 ) ( 306 0 55.76558 ) ( 305.99997 0.00003 63.40933 ) thatch [ -1.00000 0.00000 0.00000 701.55762 ] [ -0.19612 0.00000 0.98058 32.63371 ] 0 0.50000 -0.50000
( 306 300 16.00002 ) ( 305.99997 0.00003 64.86497 ) ( 306 0 57.31020 ) thatch [ 0.00000 1.00000 0.00000 -558.57504 ] [ 0.00000 -0.14834 0.98894 -223.64206 ] 0 0.50000 -0.50000
( 436 0 16 ) ( 305.99997 0.00003 63.40933 ) ( 306 310 16 ) thatch [ 0.38673 -0.92219 0.00000 -231.75632 ] [ -0.88799 -0.45986 0.00000 -879.23815 ] 0 0.50000 -0.46517
}
// Brush 5
// roof:g[3] -> prism-slice:p[4]
{
( 406 0 16 ) ( 306 -285.98676 16.00195 ) ( 306 -310.70157 15.96365 ) thatch [ -0.43531 0.90028 0.00000 982.76639 ] [ -0.90028 -0.43532 0.00000 -442.35057 ] 0 0.50000 -0.50000
( 406 0 16 ) ( 306 0 55.85646 ) ( 306 -285.98676 16.00195 ) thatch [ 0.33006 0.94396 0.00000 34.14086 ] [ -0.92184 0.38758 0.00000 -807.37610 ] 0 0.50000 -0.46076
( 306 -297 16 ) ( 306 0 57.38930 ) ( 306 0 64.96645 ) thatch [ 0.00000 1.00000 0.00000 611.00096 ] [ 0.00000 0.19612 0.98058 35.35322 ] 0 0.50000 -0.50000
( 406 0 16 ) ( 306 0 63.51880 ) ( 306 0 55.85646 ) thatch [ 1.00000 0.00000 0.00000 -644.14452 ] [ -0.14834 0.00000 0.98894 35.05452 ] 0 0.50000 -0.50000
( 436 0 16 ) ( 306 -310.70157 15.96365 ) ( 306 0 63.51880 ) thatch [ -0.38623 -0.92240 0.00000 47.65576 ] [ -0.95056 0.31054 0.00000 -873.29576 ] 0 0.50000 -0.46504
}
// Brush 6
// roof:g[3] -> poly:p[5]
{
( 316 348 8 ) ( 0 0 209.46548 ) ( 0 488 8 ) cottage_detail [ 0.99944 -0.03340 0.00000 66.05230 ] [ 0.03528 -0.99938 0.00000 -193.36136 ] 0 4.93008 -4.63253
( 316 348 8 ) ( 0 488 8 ) ( 0 0 8 ) thatch [ -0.92388 -0.38268 0.00000 825.00501 ] [ -0.38268 0.92388 0.00000 402.95759 ] 0 0.50000 -0.50000
( 0 488 8 ) ( 0 0 209.46548 ) ( 0 0 198.67296 ) thatch [ 0.00000 1.00000 0.00000 -841.25249 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.50000 -0.50000
( 316 348 8 ) ( 0 0 8 ) ( 0 0 209.46548 ) thatch [ 0.00000 -1.00000 0.00000 1048.87540 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.37016 -0.50000
}
// Brush 7
// roof:g[3] -> poly:p[6]
{
( -308 348 8 ) ( 0 0 8 ) ( 0 488 8 ) thatch [ -0.92388 0.38268 0.00000 -668.90019 ] [ 0.38268 0.92388 0.00000 317.58949 ] 0 0.50000 -0.50000
( 0 488 8 ) ( 0 0 197.53516 ) ( 0 0 209.31844 ) thatch [ 0.00000 -1.00000 0.00000 1097.28540 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.50000 -0.50000
( -308 348 8 ) ( 0 0 209.31844 ) ( 0 0 8 ) thatch [ 0.00000 1.00000 0.00000 -789.02395 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.37442 -0.50000
( -308 348 8 ) ( 0 488 8 ) ( 0 0 209.31844 ) cottage_detail [ 0.99812 0.06123 0.00000 70.69558 ] [ -0.00541 -0.99999 0.00000 -193.60524 ] 0 4.93573 -4.62379
}
// Brush 8
// roof:g[3] -> poly:p[7]
{
( 316 -346 8 ) ( 0 0 8 ) ( 0 -488 8 ) thatch [ 0.92388 -0.38268 0.00000 -135.99500 ] [ -0.38268 -0.92388 0.00000 295.45362 ] 0 0.50000 -0.50000
( 0 0 200 ) ( 0 -488 8 ) ( 0 -488 -4.57650 ) thatch [ 0.00000 -1.00000 0.00000 -64.11935 ] [ 0.00000 0.00000 1.00000 248.00000 ] 0 0.50000 -0.50000
( 316 -346 8 ) ( 0 0 207.56932 ) ( 0 0 8 ) thatch [ 0.00000 1.00000 0.00000 18.96953 ] [ 0.00000 0.00000 1.00000 248.00000 ] 0 0.36920 -0.50000
( 316 -346 8 ) ( 0 -488 8 ) ( 0 0 207.56932 ) cottage_detail [ 0.99678 0.08015 0.00000 69.03813 ] [ -0.01819 0.99983 0.00000 -194.61980 ] 0 4.94439 -4.62263
}
// Brush 9
// roof:g[3] -> poly:p[8]
{
( -308 -346 8 ) ( 0 -488 8 ) ( 0 0 8 ) thatch [ 0.92388 0.38268 0.00000 874.60402 ] [ 0.38268 -0.92388 0.00000 368.93631 ] 0 0.50000 -0.50000
( 0 -488 8 ) ( 0 0 207.67236 ) ( 0 0 195.83986 ) thatch [ 0.00000 1.00000 0.00000 1088.20986 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.50000 -0.50000
( -308 -346 8 ) ( 0 0 8 ) ( 0 0 207.67236 ) thatch [ 0.00000 -1.00000 0.00000 -783.15173 ] [ 0.00000 0.00000 1.00000 -8.00000 ] 0 0.37347 -0.50000
( -308 -346 8 ) ( 0 0 207.67236 ) ( 0 -488 8 ) cottage_detail [ 0.99812 -0.06123 0.00000 69.33918 ] [ -0.00541 0.99999 0.00000 -193.75852 ] 0 4.93469 -4.62928
}
// Brush 10
// poly:p[4]
{
( -378 -62 -116 ) ( -360 62.22540 -116 ) ( -360 186.67618 -116 ) oak2 [ 0.00000 1.00000 0.00000 0.00000 ] [ 1.00000 0.00000 0.00000 -755.22459 ] 0 0.50000 -0.50000
( -378 -62 -110 ) ( -360 62.22540 -110 ) ( -360 -62.22540 -110 ) oak2 [ 0.00000 1.00000 0.00000 -256.00000 ] [ -1.00000 0.00000 0.00000 755.22456 ] 0 0.50000 -0.50000
( -359 62 -116 ) ( -359 -62 -96 ) ( -359 -62 -76 ) oak2 [ 0.00000 1.00000 0.00000 -128.09961 ] [ 0.00000 0.00000 1.00000 -257.99992 ] 0 0.50000 -0.50000
( -376 62 -96 ) ( -376 -62 -116 ) ( -376 -62 -136 ) oak2 [ 0.00000 -1.00000 0.00000 128.00854 ] [ 0.00000 0.00000 1.00000 -258.04905 ] 0 0.50000 -0.50000
( -378 -72 -116 ) ( -360 -72 -96 ) ( -360 -72 -116 ) oak2 [ 1.00000 0.00000 0.00000 755.20365 ] [ 0.00000 0.00000 1.00000 -258.00000 ] 0 0.50000 -0.50000
( -378 72 -96 ) ( -360 72 -116 ) ( -360 72 -96 ) oak2 [ -1.00000 0.00000 0.00000 -754.60675 ] [ 0.00000 0.00000 1.00000 -258.00000 ] 0 0.50000 -0.50000
}
// Brush 11
// poly:p[5]
{
( -313.61227 -152.73506 -316 ) ( -185.61226 -152.73506 -316 ) ( -313.61227 -24.73506 -316 ) oak2 [ 0.00000 1.00000 0.00000 305.47013 ] [ 1.00000 0.00000 0.00000 -627.22455 ] 0 0.50000 -0.50000
( -313.61227 -152.73506 -110 ) ( -441.61227 -152.73506 -110 ) ( -313.61227 -24.73506 -110 ) oak2 [ 0.00000 1.00000 0.00000 305.47013 ] [ -1.00000 0.00000 0.00000 627.22452 ] 0 0.50000 -0.50000
( -360 -62 -96 ) ( -360 -56 -96 ) ( -360 -56 -308 ) oak2 [ 0.00000 1.00000 0.00000 180.01310 ] [ 0.00000 0.00000 1.00000 -2.00000 ] 0 0.50000 -0.50000
( -376 -62 -308 ) ( -376 -56 -308 ) ( -376 -56 -96 ) oak2 [ 0.00000 -1.00000 0.00000 -49.47437 ] [ 0.00000 0.00000 1.00000 -898.00000 ] 0 0.50000 -0.50000
( -360 -62 -96 ) ( -376 -62 -520 ) ( -376 -62 -308 ) oak2 [ 1.00000 0.00000 0.00000 755.22137 ] [ 0.00000 0.00000 1.00000 -386.00000 ] 0 0.50000 -0.50000
( -376 -56 -96 ) ( -360 -56 -308 ) ( -360 -56 -96 ) oak2 [ -1.00000 0.00000 0.00000 -755.24489 ] [ 0.00000 0.00000 1.00000 -2.00000 ] 0 0.50000 -0.50000
}
// Brush 12
// poly:p[6]
{
( -404 196 -367 ) ( -556 64 -367 ) ( -340 64 -367 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -448 64 -324 ) ( -488.92221 194.15038 -367 ) ( -404 196 -367 ) WALNOGROOVE [ -0.02178 0.99976 0.00000 -158.36779 ] [ -0.99976 -0.02178 0.00000 416.69024 ] 0 0.95013 -1.00000
( -448 64 -324 ) ( -340 64 -367 ) ( -556 64 -367 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 536.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -448 64 -324 ) ( -556 64 -367 ) ( -488.92221 194.15038 -367 ) WALNOGROOVE [ -0.45812 -0.88889 0.00000 -82.65046 ] [ 0.88889 -0.45812 0.00000 -528.75487 ] 0 1.00000 -0.91263
( -340 64 -324 ) ( -404 196 -367 ) ( -340 64 -367 ) WALNOGROOVE [ 0.00000 1.00000 0.00000 -7.12579 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 0.89981 -1.00000
}
// Brush 13
// poly:p[7]
{
( -556 -64 -367 ) ( -340 -64 -367 ) ( -340 64 -367 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -408 0 -324 ) ( -408 128 -324 ) ( -280 0 -324 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -408 -64 -387 ) ( -408 -64 -259 ) ( -280 -64 -387 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -408 64 -387 ) ( -408 64 -259 ) ( -536 64 -387 ) WALNOGROOVE [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -556 -64 -367 ) ( -444 64 -323 ) ( -444 -64 -323 ) WALNOGROOVE [ 0.00000 -1.00000 0.00000 0.00000 ] [ 1.00000 0.00000 0.00000 -541.03389 ] 0 1.00000 -0.93075
( -340 0 -387 ) ( -340 0 -259 ) ( -340 128 -387 ) WALNOGROOVE [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
}
// Brush 14
// poly:p[8]
{
( -556 -64 -531 ) ( -340 -64 -531 ) ( -340 64 -531 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -556 -64 -367 ) ( -340 192 -367 ) ( -340 64 -367 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 1.00000 -1.00000
( -408 -64 -431 ) ( -408 -64 -303 ) ( -280 -64 -431 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -408 64 -431 ) ( -408 64 -303 ) ( -536 64 -431 ) concrete [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -556 -64 -367 ) ( -556 64 -411 ) ( -556 192 -411 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -354.66713 ] 0 1.00000 -1.00000
( -340 0 -431 ) ( -340 0 -303 ) ( -340 128 -431 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
}
// Brush 15
// poly:p[9]
{
( -556 64 -531 ) ( -340 64 -531 ) ( -340 192 -531 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -556 64 -367 ) ( -340 320 -367 ) ( -340 192 -367 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 1.00000 -1.00000
( -408 64 -431 ) ( -408 64 -303 ) ( -280 64 -431 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -364 124 -367 ) ( -488 192 -531 ) ( -488 192 -695 ) concrete [ -1.00000 0.00000 0.00000 -220.56147 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 0.87681 -1.00000
( -488 192 -531 ) ( -556 64 -367 ) ( -556 64 -531 ) concrete [ 0.00000 -1.00000 0.00000 392.47067 ] [ 0.00000 0.00000 1.00000 -610.66713 ] 0 0.88312 -1.00000
( -364 124 -367 ) ( -340 64 -531 ) ( -340 64 -367 ) concrete [ 0.00000 1.00000 0.00000 -132.93011 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 0.92848 -1.00000
}
// Brush 16
// poly:p[10]
{
( -556 -192 -531 ) ( -340 -192 -531 ) ( -340 -64 -531 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 128.00000 ] 0 1.00000 -1.00000
( -556 -192 -367 ) ( -340 64 -367 ) ( -340 -64 -367 ) concrete [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -412 -196 -367 ) ( -340 -168 -367 ) ( -340 -168 -531 ) concrete [ 1.00000 0.00000 0.00000 434.13429 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 0.93200 -1.00000
( -408 -64 -431 ) ( -408 -64 -303 ) ( -536 -64 -431 ) concrete [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
( -412 -196 -367 ) ( -556 -64 -695 ) ( -556 -64 -531 ) concrete [ 1.00000 0.00000 0.00000 946.25203 ] [ 0.00000 0.00000 1.00000 -610.66713 ] 0 0.73715 -1.00000
( -340 -168 -531 ) ( -340 -64 -203 ) ( -340 -64 -367 ) concrete [ 0.00000 1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 -431.00000 ] 0 1.00000 -1.00000
}
// Brush 17
// poly:p[11]
{
( -340 -168 -367 ) ( -340 -64 -367 ) ( -556 -64 -367 ) WALNOGROOVE [ 1.00000 0.00000 0.00000 408.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 1.00000 -1.00000
( -340 -168 -367 ) ( -444 -64 -323 ) ( -340 -64 -334.38873 ) WALNOGROOVE [ 0.32970 -0.94409 0.00000 44.77624 ] [ 0.94409 0.32970 0.00000 -507.41516 ] 0 0.94902 -1.00000
( -408 -64 -387 ) ( -408 -64 -259 ) ( -536 -64 -387 ) WALNOGROOVE [ -1.00000 0.00000 0.00000 -408.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
( -412 -196 -367 ) ( -556 -64 -367 ) ( -444 -64 -323 ) WALNOGROOVE [ 0.73715 -0.67572 0.00000 474.76945 ] [ 0.67572 0.73715 0.00000 -466.83977 ] 0 1.00000 -0.86451
( -340 -168 -367 ) ( -340 -64 -334.38873 ) ( -340 -64 -367 ) WALNOGROOVE [ 0.00000 1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 -387.00000 ] 0 1.00000 -1.00000
}
// Brush 18
// n-prism:g[12] -> prism-slice:p[1]
{
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( -294.15643 294.15643 -32 ) ( 0 416.00003 -32 ) ( -260.21530 260.21530 -352 ) stonewall [ 1.00000 0.00000 0.00000 320.22952 ] [ -0.05296 0.00000 0.99860 -32.30582 ] 0 0.92388 -0.99193
( -316.78384 316.78384 -32 ) ( -294.15643 294.15643 -32 ) ( -271.52899 271.52899 -352 ) stonewall [ 0.00000 -1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 0 416.00003 -32 ) ( 0 448 -32 ) ( 0 368 -352 ) stonewall [ 0.00000 1.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 0 448 -32 ) ( -316.78384 316.78384 -32 ) ( 0 383.99997 -352 ) cottage_detail [ -1.00000 0.00000 0.00000 134.89348 ] [ -0.07053 0.00000 0.99751 -218.16475 ] 0 2.67925 -2.85885
}
// Brush 19
// n-prism:g[12] -> prism-slice:p[2]
{
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 0 416.00003 -32 ) ( 294.15643 294.15643 -32 ) ( 0 368 -352 ) stonewall [ 1.00000 0.00000 0.00000 -1.83689 ] [ 0.05296 0.00000 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 0 448 -32 ) ( 0 416.00003 -32 ) ( 0 383.99997 -352 ) stonewall [ 0.00000 -1.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 294.15643 294.15643 -32 ) ( 316.78384 316.78384 -32 ) ( 260.21530 260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 316.78384 316.78384 -32 ) ( 0 448 -32 ) ( 271.52899 271.52899 -352 ) cottage_detail [ -1.00000 0.00000 0.00000 255.22623 ] [ 0.07053 0.00000 0.99751 -217.02622 ] 0 2.67925 -2.85885
}
// Brush 20
// n-prism:g[12] -> prism-slice:p[3]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 294.15643 294.15643 -32 ) ( 416.00003 0 -32 ) ( 260.21530 260.21530 -352 ) stonewall [ 0.00000 -1.00000 0.00000 320.22952 ] [ 0.00000 0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 316.78384 316.78384 -32 ) ( 294.15643 294.15643 -32 ) ( 271.52899 271.52899 -352 ) stonewall [ 0.00000 -1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 416.00003 0 -32 ) ( 448 0 -32 ) ( 368 0 -352 ) stonewall [ 1.00000 0.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 448 0 -32 ) ( 316.78384 316.78384 -32 ) ( 383.99997 0 -352 ) cottage_detail [ 0.00000 1.00000 0.00000 135.16838 ] [ 0.00000 0.07053 0.99751 -218.30966 ] 0 2.67925 -2.85885
}
// Brush 21
// n-prism:g[12] -> prism-slice:p[4]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( 316.78384 -316.78384 -32 ) ( 448 0 -32 ) ( 271.52899 -271.52899 -352 ) cottage_detail [ 0.00000 1.00000 0.00000 254.84506 ] [ 0.00000 -0.07053 0.99751 -218.67496 ] 0 2.67925 -2.85885
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 416.00003 0 -32 ) ( 294.15643 -294.15643 -32 ) ( 368 0 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -1.83689 ] [ 0.00000 -0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 448 0 -32 ) ( 416.00003 0 -32 ) ( 383.99997 0 -352 ) stonewall [ -1.00000 0.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( 294.15643 -294.15643 -32 ) ( 316.78384 -316.78384 -32 ) ( 260.21530 -260.21530 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
}
// Brush 22
// n-prism:g[12] -> prism-slice:p[5]
{
( 0 -448 -32 ) ( 316.78384 -316.78384 -32 ) ( 0 -383.99997 -352 ) cottage_detail [ 1.00000 0.00000 0.00000 -123.22489 ] [ 0.07053 0.00000 0.99751 36.93919 ] 0 2.67925 -2.85885
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 294.15643 -294.15643 -32 ) ( 0 -416.00003 -32 ) ( 260.21530 -260.21530 -352 ) stonewall [ -1.00000 0.00000 0.00000 320.22952 ] [ 0.05296 0.00000 0.99860 -32.30582 ] 0 0.92388 -0.99193
( 316.78384 -316.78384 -32 ) ( 294.15643 -294.15643 -32 ) ( 271.52899 -271.52899 -352 ) stonewall [ 0.00000 1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( 0 -416.00003 -32 ) ( 0 -448 -32 ) ( 0 -368 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
}
// Brush 23
// n-prism:g[12] -> prism-slice:p[6]
{
( -90.50967 -543.05798 8 ) ( 0 -452.54834 8 ) ( 0 -633.56769 8 ) Wall_block01 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05800 ] 0 1.00000 -1.00000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( 0 -416.00003 -32 ) ( -294.15643 -294.15643 -32 ) ( 0 -368 -352 ) stonewall [ -1.00000 0.00000 0.00000 -153.23968 ] [ -0.05296 0.00000 0.99860 -292.27698 ] 0 0.92388 -0.99193
( 0 -448 -32 ) ( 0 -416.00003 -32 ) ( 0 -383.99997 -352 ) stonewall [ 0.00000 1.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( -294.15643 -294.15643 -32 ) ( -316.78384 -316.78384 -32 ) ( -260.21530 -260.21530 -352 ) stonewall [ 0.00000 -1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -316.78384 -316.78384 -32 ) ( 0 -448 -32 ) ( -271.52899 -271.52899 -352 ) cottage_detail [ 1.00000 0.00000 0.00000 254.48281 ] [ -0.07053 0.00000 0.99751 -218.23891 ] 0 2.67925 -2.85885
}
// Brush 24
// n-prism:g[12] -> prism-slice:p[7]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( -339.41125 0 -110 ) ( -467.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( -448 0 -32 ) ( -316.78384 -316.78384 -32 ) ( -383.99997 0 -352 ) cottage_detail [ 0.00000 -1.00000 0.00000 131.64687 ] [ 0.00000 -0.07053 0.99751 37.32247 ] 0 2.67925 -2.85885
( -416.00003 0 -32 ) ( -448 0 -32 ) ( -368 0 -352 ) stonewall [ -1.00000 0.00000 0.00000 -416.00002 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( -316.78384 -316.78384 -32 ) ( -294.15643 -294.15643 -32 ) ( -271.52899 -271.52899 -352 ) stonewall [ 0.00000 1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -294.15643 -294.15643 -32 ) ( -416.00003 0 -32 ) ( -260.21530 -260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 320.22952 ] [ 0.00000 -0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
}
// Brush 25
// n-prism:g[12] -> prism-slice:p[8]
{
( -358 -62 -352 ) ( -380.71878 -62 -96 ) ( -409.51877 -62 -96 ) oak2 [ -1.00000 0.00000 0.00000 -550.82251 ] [ 0.00000 0.00000 1.00000 -448.00000 ] 0 0.50000 -0.50000
( -358 -62 -352 ) ( -271.52899 -271.52899 -352 ) ( -260.21530 -260.21530 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05788 ] 0 1.00000 -1.00000
( -294.15643 -294.15643 -32 ) ( -416.00003 0 -32 ) ( -260.21530 -260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 320.22952 ] [ 0.00000 -0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( -316.78384 -316.78384 -32 ) ( -294.15643 -294.15643 -32 ) ( -271.52899 -271.52899 -352 ) stonewall [ 0.00000 1.00000 0.00000 447.99998 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -358 -62 -352 ) ( -409.51877 -62 -96 ) ( -307.73288 -307.73288 -96 ) cottage_detail [ 0.00000 -1.00000 0.00000 131.63874 ] [ 0.00000 -0.07097 0.99748 37.30570 ] 0 2.67925 -2.85835
( -339.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) ( -467.41125 0 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
}
// Brush 26
// n-prism:g[12] -> prism-slice:p[9]
{
( -90.50967 -543.05798 16 ) ( 0 -452.54834 16 ) ( 0 -633.56769 16 ) oak2 [ 1.00000 0.00000 0.00000 90.50967 ] [ 0.00000 1.00000 0.00000 -543.05798 ] 0 1.00000 -1.00000
( -339.41125 0 -110 ) ( -467.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 -1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( -316.78384 316.78384 -32 ) ( -448 0 -32 ) ( -271.52899 271.52899 -352 ) cottage_detail [ 0.00000 -1.00000 0.00000 255.55404 ] [ 0.00000 0.07053 0.99751 37.22023 ] 0 2.67925 -2.85885
( -294.15643 294.15643 -32 ) ( -316.78384 316.78384 -32 ) ( -260.21530 260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -448 0 -32 ) ( -416.00003 0 -32 ) ( -383.99997 0 -352 ) stonewall [ 1.00000 0.00000 0.00000 448.00001 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 1.00000 -1.00000
( -416.00003 0 -32 ) ( -294.15643 294.15643 -32 ) ( -368 0 -352 ) stonewall [ 0.00000 1.00000 0.00000 -1.83689 ] [ 0.00000 0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
}
// Brush 27
// n-prism:g[12] -> prism-slice:p[10]
{
( -339.41125 62 -288 ) ( -467.41125 62.00001 -288 ) ( -339.41125 62 -160 ) oak2 [ 1.00000 0.00000 0.00000 678.82253 ] [ 0.00000 0.00000 1.00000 -576.00000 ] 0 0.50000 -0.50000
( 0 -543.05798 -352 ) ( 90.50967 -452.54834 -352 ) ( -90.50967 -452.54834 -352 ) Wall_block01 [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 -1.00000 0.00000 543.05798 ] 0 1.00000 -1.00000
( -416.00003 0 -32 ) ( -294.15643 294.15643 -32 ) ( -368 0 -352 ) stonewall [ 0.00000 1.00000 0.00000 -1.83689 ] [ 0.00000 0.05296 0.99860 -32.30582 ] 0 0.92388 -0.99193
( -294.15643 294.15643 -32 ) ( -316.78384 316.78384 -32 ) ( -260.21530 260.21530 -352 ) stonewall [ 0.00000 1.00000 0.00000 -415.99999 ] [ 0.00000 0.00000 1.00000 -32.00000 ] 0 0.70711 -1.00000
( -316.78384 316.78384 -32 ) ( -448 0 -32 ) ( -271.52899 271.52899 -352 ) cottage_detail [ 0.00000 -1.00000 0.00000 255.55581 ] [ 0.00000 0.07053 0.99751 37.20545 ] 0 2.67925 -2.85885
( -339.41125 0 -110 ) ( -339.41125 -128.00002 -110 ) ( -467.41125 0 -110 ) oak2 [ 1.00000 0.00000 0.00000 678.82251 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
}
// Brush 28
// n-prism:g[14] -> prism-slice:p[1]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( -271.52899 271.52899 -316 ) ( 0 0 -316 ) ( -362.03867 362.03867 -516 ) concrete [ 0.00000 -1.00000 0.00000 60.58667 ] [ 0.00000 0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( 0 0 -316 ) ( 0 383.99997 -316 ) ( 0 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( 0 383.99997 -316 ) ( -271.52899 271.52899 -316 ) ( 0 512 -516 ) concrete [ -1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24002 ] 0 2.12132 -1.56250
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 29
// n-prism:g[14] -> prism-slice:p[2]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 0 383.99997 -316 ) ( 0 0 -316 ) ( 0 512 -516 ) concrete [ 0.00000 -1.00000 0.00000 60.58665 ] [ 0.00000 0.53905 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( 271.52899 271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( 271.52899 271.52899 -316 ) ( 0 383.99997 -316 ) ( 362.03867 362.03867 -516 ) concrete [ -1.00000 0.00000 0.00000 60.58666 ] [ 0.41229 0.00000 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 30
// n-prism:g[14] -> prism-slice:p[3]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 271.52899 271.52899 -316 ) ( 0 0 -316 ) ( 362.03867 362.03867 -516 ) concrete [ 0.00000 -1.00000 0.00000 60.58667 ] [ 0.00000 0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( 0 0 -316 ) ( 383.99997 0 -316 ) ( 0 0 -516 ) concrete [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( 383.99997 0 -316 ) ( 271.52899 271.52899 -316 ) ( 512 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24002 ] 0 2.12132 -1.56250
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 31
// n-prism:g[14] -> prism-slice:p[4]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 383.99997 0 -316 ) ( 0 0 -316 ) ( 512 0 -516 ) concrete [ -1.00000 0.00000 0.00000 60.58665 ] [ 0.53905 0.00000 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( 271.52899 -271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( 271.52899 -271.52899 -316 ) ( 383.99997 0 -316 ) ( 362.03867 -362.03867 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58666 ] [ 0.00000 -0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 32
// n-prism:g[14] -> prism-slice:p[5]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 271.52899 -271.52899 -316 ) ( 0 0 -316 ) ( 362.03867 -362.03867 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58667 ] [ 0.00000 -0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( 0 0 -316 ) ( 0 -383.99997 -316 ) ( 0 0 -516 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( 0 -383.99997 -316 ) ( 271.52899 -271.52899 -316 ) ( 0 -512 -516 ) concrete [ 1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24002 ] 0 2.12132 -1.56250
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 33
// n-prism:g[14] -> prism-slice:p[6]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( 0 -383.99997 -316 ) ( 0 0 -316 ) ( 0 -512 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58665 ] [ 0.00000 -0.53905 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( -271.52899 -271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 -1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( -271.52899 -271.52899 -316 ) ( 0 -383.99997 -316 ) ( -362.03867 -362.03867 -516 ) concrete [ 1.00000 0.00000 0.00000 60.58666 ] [ -0.41229 0.00000 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 34
// n-prism:g[14] -> prism-slice:p[7]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( -271.52899 -271.52899 -316 ) ( 0 0 -316 ) ( -362.03867 -362.03867 -516 ) concrete [ 0.00000 1.00000 0.00000 60.58667 ] [ 0.00000 -0.41229 -0.91105 202.24000 ] 0 2.12132 -1.71505
( -389.99997 0 -316 ) ( 0 0 -516 ) ( 0 0 -316 ) concrete [ -1.00000 0.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 3.00000 -1.56250
( -389.99997 0 -316 ) ( -271.52899 -271.52899 -316 ) ( -362.03870 -362.03870 -516 ) concrete [ 0.00000 -1.00000 0.00000 1.90366 ] [ 0.00000 -0.01332 -0.99991 202.88992 ] 0 2.10451 -1.55957
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 35
// n-prism:g[14] -> prism-slice:p[8]
{
( 0 -724.07733 -516 ) ( 90.50967 -633.56769 -516 ) ( -90.50967 -633.56769 -516 ) concrete [ 0.70711 0.70711 0.00000 511.99998 ] [ -0.70711 0.70711 0.00000 -511.99998 ] 0 1.00000 -1.00000
( -389.99997 0 -316 ) ( 0 0 -316 ) ( 0 0 -516 ) concrete [ 1.00000 0.00000 0.00000 60.58665 ] [ -0.53905 0.00000 -0.84227 202.24000 ] 0 3.00000 -1.85510
( 0 0 -316 ) ( -271.52899 271.52899 -316 ) ( 0 0 -516 ) concrete [ 0.00000 1.00000 0.00000 0.00000 ] [ 0.00000 0.00000 -1.00000 202.24000 ] 0 2.12132 -1.56250
( -389.99997 0 -316 ) ( -362.03867 362.03867 -516 ) ( -271.52899 271.52899 -316 ) concrete [ 0.00000 -1.00000 0.00000 58.46637 ] [ 0.00000 0.42028 -0.90740 202.88989 ] 0 2.10451 -1.71858
( -90.50967 -452.54834 -316 ) ( 0 -362.03867 -316 ) ( 0 -543.05798 -316 ) Floor_slate01 [ 0.99994 -0.01060 0.00000 272.47298 ] [ -0.01060 -0.99994 0.00000 -87.62686 ] 0 1.00000 -1.00000
}
// Brush 36
// poly:p[16]
{
( -400 -92.00010 -324 ) ( -324 88 -324 ) ( -324 268.00009 -324 ) oak2 [ 0.00000 1.00000 0.00000 4.42913 ] [ 1.00000 0.00000 0.00000 -338.07166 ] 0 1.00000 -1.00000
( -362.86710 -65.05383 -100 ) ( -360.03864 64.34670 -100 ) ( -360.03867 -63.63962 -100 ) oak2 [ 0.00000 1.00000 0.00000 -32.15292 ] [ -1.00000 0.00000 0.00000 279.07508 ] 0 1.00000 -1.00000
( -324 56 -308 ) ( -324 -56 -116 ) ( -324 -56 76 ) oak2 [ 0.00000 1.00000 0.00000 -56.48529 ] [ 0.00000 0.00000 1.00000 -209.65101 ] 0 1.00000 -1.00000
( -400 -92.00010 -324 ) ( -432 88 -76 ) ( -432 -92.00010 -76 ) oak2 [ 0.00000 -1.00000 0.00000 200.47956 ] [ 0.00000 0.00000 1.00000 -145.78088 ] 0 1.00000 -0.99178
( -363.99991 -92.00002 -308 ) ( -359.99991 -92.00002 -116 ) ( -359.99991 -92 -308 ) oak2 [ 1.00000 0.00000 0.00000 370.88021 ] [ 0.00000 0.00000 1.00000 -416.00001 ] 0 1.00000 -1.00000
( -360 88 -308 ) ( -364 88 76 ) ( -364 88 -116 ) oak2 [ -1.00000 0.00000 0.00000 -354.88030 ] [ 0.00000 0.00000 1.00000 -224.00000 ] 0 1.00000 -1.00000
}
}
// Entity 1
// detail:b[15]
{
"classname" "detail"
// Brush 0
// detail:b[15] -> poly:p[1]
{
( 349.06812 -322.44070 44 ) ( 298.15643 -271.52899 -352 ) ( 275.52899 -294.15643 -352 ) oak2 [ 0.00000 0.12752 -0.99184 125.49758 ] [ 0.00000 1.00000 0.00000 -1024.00002 ] 0 0.49598 -0.35355
( 315.12698 -288.49957 60 ) ( 218.96046 -282.84271 -352 ) ( 241.58788 -260.21530 -352 ) oak2 [ 0.00000 0.12264 -0.99245 132.32400 ] [ 0.00000 -1.00000 0.00000 795.02913 ] 0 0.49628 -0.35355
( 340.58282 -313.95541 -448 ) ( 250.07317 -223.44574 -448 ) ( 340.58282 -313.95541 -576 ) oak2 [ 0.00000 0.00000 -1.00000 -896.00004 ] [ 0.00000 1.00000 0.00000 -887.99992 ] 0 0.50000 -0.35355
( 317.95541 -336.58282 -448 ) ( 227.44574 -246.07317 -448 ) ( 317.95541 -336.58282 -320 ) oak2 [ 0.00000 0.00000 1.00000 896.00003 ] [ -1.00000 0.00000 0.00000 -899.31364 ] 0 0.50000 -0.35355
( 315.12698 -288.49957 60 ) ( 326.44070 -345.06812 44 ) ( 303.81326 -367.69553 44 ) oak2_end [ -0.70711 -0.70711 0.00000 75.31371 ] [ 0.70711 -0.70711 0.00000 1138.20905 ] 0 0.25000 -0.37500
( 264.21530 -237.58788 8 ) ( 275.52899 -294.15643 8 ) ( 298.15643 -271.52899 8 ) oak2_end [ -0.70711 -0.70711 0.00000 75.31370 ] [ -0.70711 0.70711 0.00000 -1595.31358 ] 0 0.25000 -0.25000
}
// Brush 1
// detail:b[15] -> poly:p[4]
{
( -217.17157 -13.17157 219 ) ( -217.17157 -141.17157 219 ) ( -345.17160 -13.17158 219 ) oak2 [ -1.00000 0.00000 0.00000 -434.34316 ] [ 0.00000 -1.00000 0.00000 26.34314 ] 0 0.50000 -0.50000
( 467 -16 187 ) ( -467 19 187 ) ( -467 -15 187 ) oak2 [ -1.00000 0.00000 0.00000 -562.34314 ] [ 0.00000 1.00000 0.00000 101.65686 ] 0 0.50000 -0.50000
( -467 -16 219 ) ( 468 -16 187 ) ( 468 -16 155 ) oak2 [ -1.00000 0.00000 0.00000 -946.35168 ] [ 0.00000 0.00000 -1.00000 -438.00000 ] 0 0.50000 -0.50000
( 468 19 219 ) ( -467 19 219 ) ( -467 19 187 ) oak2 [ 1.00000 0.00000 0.00000 946.34387 ] [ 0.00000 0.00000 -1.00000 -438.00000 ] 0 0.50000 -0.50000
( 468 -16 187 ) ( 468 19 251 ) ( 468 19 219 ) oak2_end [ 0.00000 -1.00000 0.00000 75.72875 ] [ 0.00000 0.00000 -1.00000 -876.00000 ] 0 0.25000 -0.25000
( -467 -16 219 ) ( -467 19 155 ) ( -467 19 187 ) oak2_end [ 0.00000 1.00000 0.00000 52.68534 ] [ 0.00000 0.00000 -1.00000 -876.00009 ] 0 0.25000 -0.25000
}
// Brush 2
// detail:b[15] -> poly:p[5]
{
( -287.94806 -106.85542 276.00003 ) ( -294 283.99994 8.00003 ) ( -326 283.99994 8 ) oak2 [ 0.00000 1.00000 0.00000 315.30269 ] [ 1.00000 0.00000 0.00000 -703.89611 ] 0 0.41237 -0.50000
( -287.94806 342.67569 8 ) ( -319.94806 -87.85539 304 ) ( -359.01910 -87.85542 304 ) oak2 [ 0.00000 1.00000 0.00000 256.63783 ] [ -1.00000 0.00000 0.00000 575.89620 ] 0 0.41202 -0.50000
( -288 284 8 ) ( -287.94806 -87.85542 264.00003 ) ( -287.94806 -87.85539 304 ) oak2 [ 0.00000 0.70711 -0.70711 -535.49804 ] [ 0.00000 0.70711 0.70711 571.38027 ] 0 0.50000 -0.50000
( -326 284 8 ) ( -319.94806 -87.85539 304 ) ( -319.94806 -87.85542 264 ) oak2 [ 0.00000 -0.70706 0.70715 -488.51849 ] [ 0.00000 0.70706 0.70715 187.36372 ] 0 0.49997 -0.49997
( -287.94806 -106.85542 276.00003 ) ( -319.94806 -87.85539 304 ) ( -287.94806 -87.85539 304.00003 ) oak2_end [ 1.00000 0.00000 0.00000 1407.79219 ] [ 0.00000 0.00000 1.00000 1273.45695 ] 0 0.25000 -0.20687
( -288 284 8 ) ( -287.94806 342.67569 8 ) ( -326.95496 342.67566 8 ) oak2_end [ 0.00000 1.00000 0.00000 -1280.57820 ] [ 1.00000 0.00000 0.00000 -1218.01814 ] 0 0.25000 -0.25000
}
// Brush 3
// detail:b[15] -> poly:p[6]
{
( 325.82053 -104.26963 273.97229 ) ( 323.28146 284.50824 8 ) ( 291.35199 284.50818 8 ) oak2 [ 0.00000 1.00000 0.00000 315.40879 ] [ 1.00000 0.00000 0.00000 517.98559 ] 0 0.41267 -0.50000
( 322.95358 339.84726 8 ) ( 294.52771 -91.39093 306.48795 ) ( 262.51831 -91.39091 306.48795 ) oak2 [ 0.00000 1.00000 0.00000 257.05437 ] [ -1.00000 0.00000 0.00000 -645.98444 ] 0 0.41112 -0.50000
( 325.82053 -104.26963 273.97229 ) ( 322.90555 339.84726 8 ) ( 323.28146 284.50824 8 ) oak2 [ 0.00000 0.70710 -0.70711 -407.50853 ] [ 0.00000 0.70710 0.70712 443.39058 ] 0 0.49999 -0.49999
( 294.52771 -91.39098 264 ) ( 290.99225 327.09195 -27.99997 ) ( 290.99222 327.09198 12 ) oak2 [ 0.00000 -0.70709 0.70712 279.51443 ] [ 0.00000 0.70709 0.70712 571.39664 ] 0 0.49999 -0.49999
( 325.82053 -104.26963 273.97229 ) ( 294.52768 -91.39093 306.48795 ) ( 325.82053 -89.26958 305.01962 ) oak2_end [ 1.00000 0.00000 0.00000 -1350.31329 ] [ -0.04331 0.00000 0.99906 1282.46381 ] 0 0.24898 -0.22549
( 322.95358 339.84726 8 ) ( 291.35199 284.50818 8 ) ( 323.36136 284.50818 8 ) oak2_end [ 0.00000 1.00000 0.00000 -1152.57835 ] [ 1.00000 0.00000 0.00000 1225.74289 ] 0 0.25000 -0.25000
}
// Brush 4
// detail:b[15] -> poly:p[7]
{
( 286.74966 110.44115 275.02771 ) ( 289.58368 -284.50821 8 ) ( 322.99219 -284.50821 8 ) oak2 [ 0.00000 -1.00000 0.00000 317.97404 ] [ -1.00000 0.00000 0.00000 -709.98441 ] 0 0.41421 -0.50000
( 290 -339 8 ) ( 286.74966 86.44120 303.02130 ) ( 322.99231 87.85542 304.00003 ) oak2 [ 0.00008 -1.00000 0.00000 257.16890 ] [ 1.00000 0.00008 0.00000 581.99804 ] 0 0.41088 -0.50000
( 286.74966 110.44115 275.02771 ) ( 290 -339 8 ) ( 289.58368 -284.50821 8 ) oak2 [ 0.00000 -0.70710 -0.70712 616.47490 ] [ 0.00000 -0.70709 0.70712 187.40712 ] 0 0.49999 -0.49999
( 322.99219 -300.83087 12.68628 ) ( 322.99219 -391.34055 103.19592 ) ( 322.99222 -210.32124 103.19592 ) oak2 [ 0.00000 0.70711 0.70711 407.49800 ] [ 0.00000 -0.70711 0.70711 443.38026 ] 0 0.50000 -0.50000
( 286.74966 110.44115 275.02771 ) ( 322.99231 87.85542 304.00003 ) ( 286.74966 86.44120 303.02130 ) oak2_end [ -1.00000 0.00000 0.00000 1229.77126 ] [ 0.05302 0.00000 0.99859 1276.34054 ] 0 0.24952 -0.19022
( 290 -339 8 ) ( 322.99219 -284.50821 8 ) ( 290.50372 -284.50821 8 ) oak2_end [ -1.00000 0.00000 0.00000 1291.96886 ] [ 0.00000 1.00000 0.00000 -1217.48292 ] 0 0.25000 -0.25000
}
// Brush 5
// detail:b[15] -> poly:p[8]
{
( -319.94791 111.85537 275.99997 ) ( -313.68826 -284.50827 7.99997 ) ( -281.68839 -284.50824 8 ) oak2 [ 0.00000 -1.00000 0.00000 317.96047 ] [ -1.00000 0.00000 0.00000 511.89612 ] 0 0.41420 -0.50000
( -319.94806 -339.84723 8 ) ( -287.94803 87.85542 304.00003 ) ( -248.82942 87.85544 304.00003 ) oak2 [ 0.00000 -1.00000 0.00000 257.09224 ] [ 1.00000 0.00000 0.00000 -511.89613 ] 0 0.41114 -0.50000
( -319.94803 -300.83087 12.68628 ) ( -319.94806 -391.34055 103.19592 ) ( -319.94806 -391.34055 -77.82336 ) oak2 [ 0.00000 -0.70711 -0.70711 -407.49802 ] [ 0.00000 -0.70711 0.70711 443.38029 ] 0 0.50000 -0.50000
( -280.87698 -332.77615 8 ) ( -287.94803 87.85542 304.00003 ) ( -287.94803 87.85539 264 ) oak2 [ 0.00000 0.70706 0.70716 279.48046 ] [ 0.00000 -0.70706 0.70716 571.36268 ] 0 0.49996 -0.49996
( -319.94791 111.85537 275.99997 ) ( -287.94803 87.85543 304.00003 ) ( -319.94791 87.85541 304 ) oak2_end [ -1.00000 0.00000 0.00000 -1023.79372 ] [ 0.00000 0.00000 1.00000 1405.49167 ] 0 0.25000 -0.18981
( -319.94806 -339.84723 8 ) ( -281.68845 -284.50824 8 ) ( -320.80701 -284.50824 8 ) oak2_end [ -1.00000 0.00000 0.00000 -1151.79227 ] [ 0.00000 1.00000 0.00000 -1217.48292 ] 0 0.25000 -0.25000
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View File

@@ -0,0 +1,866 @@
// This map has been written by QuArK - Quake Army Knife, QuArK 6.3
// It is a map for the game Torque.
// For more information see QuArK's Home Page : http://www.planetquake.com/quark
// Entity 0
// worldspawn
{
"classname" "worldspawn"
"detail_number" "0"
"min_pixels" "250"
"geometry_scale" "32.0"
"light_geometry_scale" "16.0"
"ambient_color" "0 0 0"
"emergency_ambient_color" "0 0 0"
"mapversion" "220"
"oldstyle_lighting" "0"
"rad_subdivision_u" "4"
"rad_subdivision_v" "4"
"rad_arealight_multiplier" "1000000"
"rad_pointlight_multiplier" "1.0"
"rad_convergence" "1.0"
"rad_iteration_limiter" "0"
"rad_directlight_only" "0"
"rad_use_nusselts" "0"
"rad_ambientterm" "0"
"rad_adaptive_degradation" "1"
"rad_adaptive_threshold" "15"
"rad_adaptive_max_x" "128"
"rad_adaptive_max_y" "128"
"rad_defaultreflectivity" ".38 .38 .38"
"rad_defaultemissioncolor" "0.0 0.0 0.0"
"rad_defaultemissionintensity" "0.0"
"rad_octree_threshold" "50000"
"rad_octree_minnoderadius" "5.0"
"rad_octree_maxtreedepth" "50"
"rad_bsp_gaussian" "8"
"rad_bsp_searchrange" "5"
"rad_lightmap_gamma" "1.0"
"rad_lightmap_width" "256"
"rad_lightmap_height" "256"
// Brush 0
// poly:p[3]
{
( -64 248 64 ) ( -192 248 64 ) ( -64 248 192 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 256 64 ) ( -64 256 192 ) ( -192 256 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
}
// Brush 1
// poly:p[4]
{
( -64 0 64 ) ( -192 0 64 ) ( -64 0 192 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 -184 184 ) ( -64 -56 184 ) ( 64 -184 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 -368.00000 ] 0 0.50000 -0.50000
( 192 -184 64 ) ( 192 -184 192 ) ( 192 -56 64 ) stonewall [ 0.00000 1.00000 0.00000 368.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 -184 64 ) ( -192 -184 192 ) ( -192 -312 64 ) stonewall [ 0.00000 -1.00000 0.00000 -368.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( -192 8 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 -184 8 ) ( -64 -312 8 ) ( 64 -184 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 2
// poly:p[5]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 276 80 124 ) ( 148 -48 124 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 156 8 116 ) ( 212 8 116 ) stonewall [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
}
// Brush 3
// poly:p[6]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 156 8 116 ) ( 212 8 116 ) stonewall [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 276 80 124 ) ( 148 -48 124 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 4
// poly:p[7]
{
( 148 16 68 ) ( 276 16 68 ) ( 148 16 196 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 212 8 116 ) ( 156 8 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 5
// poly:p[8]
{
( 156 104 124 ) ( 268 132 64 ) ( 212 132 64 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 169.19466 ] 0 0.50000 -0.45309
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 212 8 116 ) ( 156 8 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
}
// Brush 6
// poly:p[9]
{
( 156 124 8 ) ( 156 124 64 ) ( 212 124 64 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
}
// Brush 7
// poly:p[10]
{
( 148 16 68 ) ( 276 16 68 ) ( 148 16 196 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 8
// poly:p[11]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 276 80 124 ) ( 148 -48 124 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 148 80 116 ) ( 148 -48 116 ) ( 276 80 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 9
// poly:p[12]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 116 ) ( 148 -48 116 ) ( 276 80 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 276 80 124 ) ( 148 -48 124 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 10
// poly:p[13]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 11
// poly:p[14]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 12
// poly:p[15]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 212 80 184 ) ( 212 80 312 ) ( 212 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 80 184 ) ( 156 80 312 ) ( 156 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 16 184 ) ( 148 16 312 ) ( 276 16 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 208 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 13
// poly:p[16]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 208 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 96 184 ) ( 148 96 312 ) ( 20 96 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 80 184 ) ( 156 80 312 ) ( 156 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 212 80 184 ) ( 212 80 312 ) ( 212 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 14
// poly:p[17]
{
( 164 80 184 ) ( 164 -48 184 ) ( 164 80 312 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 80 184 ) ( 156 80 312 ) ( 156 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 208 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 15
// poly:p[18]
{
( 204 80 184 ) ( 204 208 184 ) ( 204 80 312 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 208 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 212 80 184 ) ( 212 80 312 ) ( 212 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 16
// poly:p[19]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 216 80 184 ) ( 216 80 312 ) ( 216 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 152 80 184 ) ( 152 80 312 ) ( 152 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 12 184 ) ( 148 12 312 ) ( 276 12 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 17
// poly:p[20]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 148 100 184 ) ( 148 100 312 ) ( 20 100 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 152 80 184 ) ( 152 80 312 ) ( 152 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 216 80 184 ) ( 216 80 312 ) ( 216 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 18
// poly:p[21]
{
( 164 80 184 ) ( 164 -48 184 ) ( 164 80 312 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 152 80 184 ) ( 152 80 312 ) ( 152 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 19
// poly:p[22]
{
( 204 80 184 ) ( 204 208 184 ) ( 204 80 312 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 216 80 184 ) ( 216 80 312 ) ( 216 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 20
// poly:p[23]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 8 124 ) ( 156 8 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 8 68 ) ( 148 8 196 ) ( 276 8 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 156 8 116 ) ( 212 8 116 ) stonewall [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
}
// Brush 21
// poly:p[24]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 156 8 116 ) ( 212 8 116 ) stonewall [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 132 64 ) ( 268 132 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 169.19466 ] 0 0.50000 -0.45309
( 156 104 124 ) ( 212 8 124 ) ( 156 8 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
}
// Brush 22
// poly:p[25]
{
( 164 80 184 ) ( 164 -48 184 ) ( 164 80 312 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 8 124 ) ( 156 8 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 156 8 116 ) ( 212 8 116 ) stonewall [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 23
// poly:p[26]
{
( 204 80 184 ) ( 204 208 184 ) ( 204 80 312 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 156 8 116 ) ( 212 8 116 ) stonewall [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 8 124 ) ( 156 8 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 24
// poly:p[27]
{
( 148 16 68 ) ( 276 16 68 ) ( 148 16 196 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 212 8 116 ) ( 156 8 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 8 68 ) ( 148 8 196 ) ( 276 8 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 25
// poly:p[28]
{
( 204 80 68 ) ( 204 208 68 ) ( 204 80 196 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 132 64 ) ( 268 132 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 169.19466 ] 0 0.50000 -0.45309
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 212 8 116 ) ( 156 8 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 16 68 ) ( 148 16 196 ) ( 276 16 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 26
// poly:p[29]
{
( 156 40 76 ) ( 148 88 76 ) ( 140 88 76 ) stonewall [ -1.00000 0.00000 0.00000 309.85538 ] [ 0.00000 1.00000 0.00000 88.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 132 64 ) ( 268 132 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 169.19466 ] 0 0.50000 -0.45309
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 212 8 116 ) ( 156 8 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 16 68 ) ( 148 16 196 ) ( 276 16 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 80 68 ) ( 156 -48 68 ) ( 156 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 27
// poly:p[30]
{
( 156 40 76 ) ( 140 32 64 ) ( 148 32 64 ) stonewall [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 0.00000 1.00000 161.83685 ] 0 0.50000 -0.41603
( 156 40 76 ) ( 140 88 76 ) ( 148 88 76 ) stonewall [ 1.00000 0.00000 0.00000 -314.14459 ] [ 0.00000 1.00000 0.00000 88.00000 ] 0 0.50000 -0.50000
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 16 68 ) ( 148 16 196 ) ( 276 16 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 80 68 ) ( 156 -48 68 ) ( 156 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 28
// poly:p[31]
{
( 156 88 76 ) ( 156 96 64 ) ( 148 96 64 ) stonewall [ 1.00000 0.00000 0.00000 -328.00000 ] [ 0.00000 0.00000 1.00000 181.77974 ] 0 0.50000 -0.41603
( 156 80 68 ) ( 156 -48 68 ) ( 156 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 132 64 ) ( 268 132 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 169.19466 ] 0 0.50000 -0.45309
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 156 40 76 ) ( 140 88 76 ) ( 148 88 76 ) stonewall [ 1.00000 0.00000 0.00000 -314.14459 ] [ 0.00000 1.00000 0.00000 88.00000 ] 0 0.50000 -0.50000
}
// Brush 29
// poly:p[32]
{
( 156 96.75053 120.61691 ) ( 268 124.75053 60.61692 ) ( 212 124.75053 60.61692 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 161.72800 ] 0 0.50000 -0.45309
( 204 80 68 ) ( 204 80 196 ) ( 204 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 132 64 ) ( 268 132 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 169.19466 ] 0 0.50000 -0.45309
( 156 104 116 ) ( 212 8 116 ) ( 156 8 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 156 80 68 ) ( 156 80 196 ) ( 156 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 30
// poly:p[33]
{
( 156 124 8 ) ( 156 124 64 ) ( 212 124 64 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 132 64 ) ( 156 132 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 16 8 ) ( 268 16 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 31
// poly:p[34]
{
( 148 16 68 ) ( 276 16 68 ) ( 148 16 196 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 16 8 ) ( 268 16 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 8 68 ) ( 148 8 196 ) ( 276 8 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
}
// Brush 32
// poly:p[35]
{
( 204 80 68 ) ( 204 208 68 ) ( 204 80 196 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 124 8 ) ( 212 124 64 ) ( 156 124 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 16 8 ) ( 268 16 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 16 68 ) ( 148 16 196 ) ( 276 16 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 33
// poly:p[36]
{
( 192 80 12 ) ( 192 208 12 ) ( 192 80 140 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
( 156 132 -48 ) ( 212 132 8 ) ( 156 132 8 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 43.94286 ] 0 0.50000 -0.50000
( 148 80 8 ) ( 148 208 8 ) ( 276 80 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 12 ) ( 216 80 140 ) ( 216 208 12 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
( 156 132 -64 ) ( 212 16 -64 ) ( 268 16 -64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 8 12 ) ( 148 8 140 ) ( 276 8 12 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
}
// Brush 34
// poly:p[37]
{
( 156 132 12 ) ( 268 16 12 ) ( 212 16 12 ) Floor_slate01 [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 156 124 8 ) ( 212 124 64 ) ( 156 124 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 16 8 ) ( 268 16 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 16 68 ) ( 148 16 196 ) ( 276 16 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 204 80 68 ) ( 204 -48 68 ) ( 204 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 35
// poly:p[38]
{
( 148 32 68 ) ( 276 32 68 ) ( 148 32 196 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 80 68 ) ( 156 -48 68 ) ( 156 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 16 68 ) ( 148 16 196 ) ( 276 16 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 156 132 12 ) ( 212 16 12 ) ( 268 16 12 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 36
// poly:p[39]
{
( 156 96 8 ) ( 156 96 64 ) ( 212 96 64 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 156 132 12 ) ( 212 16 12 ) ( 268 16 12 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 156 124 8 ) ( 212 124 64 ) ( 156 124 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 80 68 ) ( 156 -48 68 ) ( 156 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 37
// poly:p[40]
{
( -248 128 136 ) ( -120 128 136 ) ( -248 256 136 ) stonewall [ -1.00000 0.00000 0.00000 -496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 38
// poly:p[41]
{
( -192 0 184 ) ( -184 256 184 ) ( -192 256 184 ) stonewall [ -1.00000 0.00000 0.00000 -240.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( -192 256 184 ) ( -184 128 296 ) ( -192 128 296 ) stonewall [ -1.00000 0.00000 0.00000 -384.00000 ] [ 0.00000 -1.00000 0.00000 -652.45717 ] 0 0.50000 -0.37629
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 0 184 ) ( -184 128 296 ) ( -176 128 296 ) stonewall [ 1.00000 0.00000 0.00000 384.00000 ] [ 0.00000 1.00000 0.00000 27.87212 ] 0 0.50000 -0.37629
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 39
// poly:p[42]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 -64 64 ) ( 192 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 128 296 ) ( 200 128 296 ) stonewall [ 1.00000 0.00000 0.00000 -368.00000 ] [ 0.00000 1.00000 0.00000 27.87212 ] 0 0.50000 -0.37629
( 184 64 64 ) ( 184 64 192 ) ( 184 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 256 184 ) ( 184 256 184 ) stonewall [ -1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
}
// Brush 40
// poly:p[43]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 256 184 ) ( 184 256 184 ) stonewall [ -1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( 184 256 184 ) ( 192 128 296 ) ( 184 128 296 ) stonewall [ -1.00000 0.00000 0.00000 368.00000 ] [ 0.00000 -1.00000 0.00000 -652.45717 ] 0 0.50000 -0.37629
( 184 64 64 ) ( 184 64 192 ) ( 184 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 128 296 ) ( 200 128 296 ) stonewall [ 1.00000 0.00000 0.00000 -368.00000 ] [ 0.00000 1.00000 0.00000 27.87212 ] 0 0.50000 -0.37629
( 192 64 64 ) ( 192 -64 64 ) ( 192 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 41
// poly:p[44]
{
( -248 96 72 ) ( -120 96 72 ) ( -248 96 200 ) stonewall [ -1.00000 0.00000 0.00000 -496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
}
// Brush 42
// poly:p[45]
{
( -128 136 0 ) ( -128 8 0 ) ( 0 136 0 ) oak2 [ 0.00000 -1.00000 0.00000 544.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 136 136 ) ( -128 264 136 ) ( 0 136 136 ) oak2 [ 0.00000 1.00000 0.00000 -544.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 192 72 ) ( -128 192 200 ) ( 0 192 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 208 72 ) ( -128 208 200 ) ( -256 208 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ -1.00000 0.00000 0.00000 512.00000 ] 0 0.25000 -0.25000
( -196 136 72 ) ( -196 136 200 ) ( -196 8 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 -1.00000 0.00000 -544.00000 ] 0 0.25000 -0.25000
( -180 136 72 ) ( -180 136 200 ) ( -180 264 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 1.00000 0.00000 544.00000 ] 0 0.25000 -0.25000
}
// Brush 43
// poly:p[46]
{
( 156 24 184 ) ( 284 24 184 ) ( 156 24 312 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 96 248 ) ( 156 96 376 ) ( 156 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 -32 156 ) ( -672 -32 156 ) thatch [ 1.00000 0.00000 0.00000 1024.00000 ] [ 0.00000 0.00000 1.00000 240.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
}
// Brush 44
// poly:p[47]
{
( 156 88 184 ) ( 28 88 184 ) ( 156 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 128 296 ) ( -224 128 312 ) ( -672 128 312 ) thatch [ -1.00000 0.00000 0.00000 256.00000 ] [ 0.00000 0.00000 1.00000 -16.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 156 96 248 ) ( 156 96 376 ) ( 156 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
}
// Brush 45
// poly:p[48]
{
( 204 80 184 ) ( 204 80 312 ) ( 204 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 24 184 ) ( 156 24 312 ) ( 284 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 156 88 184 ) ( 156 88 312 ) ( 28 88 184 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 46
// poly:p[49]
{
( 164 80 184 ) ( 164 -48 184 ) ( 164 80 312 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 128 184 ) ( 156 128 312 ) ( 28 128 184 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( -224 96 248 ) ( -224 96 376 ) ( -224 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 156 -32 184 ) ( 156 -32 312 ) ( 284 -32 184 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 47
// poly:p[50]
{
( -128 40 0 ) ( -128 -88 0 ) ( 0 40 0 ) oak2 [ 0.00000 -1.00000 0.00000 160.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 40 136 ) ( -128 168 136 ) ( 0 40 136 ) oak2 [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 96 72 ) ( -128 96 200 ) ( 0 96 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 112 72 ) ( -128 112 200 ) ( -256 112 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ -1.00000 0.00000 0.00000 512.00000 ] 0 0.25000 -0.25000
( -196 40 72 ) ( -196 40 200 ) ( -196 -88 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.25000 -0.25000
( -180 40 72 ) ( -180 40 200 ) ( -180 168 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.25000 -0.25000
}
// Brush 48
// poly:p[51]
{
( -248 208 72 ) ( -376 208 72 ) ( -248 208 200 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 49
// group:g[52] -> poly:p[1]
{
( -64 64 -64 ) ( -64 -64 -64 ) ( 64 64 -64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -64 0 64 ) ( -64 0 192 ) ( 64 0 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 256 64 ) ( -64 256 192 ) ( -192 256 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( 64 64 8 ) ( -64 -64 8 ) Floor_slate01 [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
}
// Brush 50
// poly:p[53]
{
( -224 288 156 ) ( 224 128 296 ) ( 672 128 296 ) thatch [ 1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 -1.00000 0.00000 -410.77452 ] 0 0.50000 -0.37629
( -224 288 160 ) ( 224 128 300 ) ( -224 128 300 ) thatch [ -1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 -1.00000 0.00000 -522.97045 ] 0 0.50000 -0.37629
( -224 128 296 ) ( 224 128 312 ) ( 672 128 312 ) thatch [ 1.00000 0.00000 0.00000 256.00000 ] [ 0.00000 0.00000 1.00000 -16.00000 ] 0 0.50000 -0.50000
( -224 288 160 ) ( 224 288 156 ) ( 672 288 156 ) thatch [ -1.00000 0.00000 0.00000 1024.00000 ] [ 0.00000 0.00000 1.00000 240.00000 ] 0 0.50000 -0.50000
( -224 160 248 ) ( -224 160 376 ) ( -224 32 248 ) thatch [ 0.00000 -1.00000 0.00000 320.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 160 248 ) ( 224 160 376 ) ( 224 288 248 ) thatch [ 0.00000 1.00000 0.00000 -320.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
}
// Brush 51
// poly:p[55]
{
( -208 64 344 ) ( -208 64 472 ) ( -208 -64 344 ) oak2 [ 0.00000 -1.00000 0.00000 256.00000 ] [ 0.00000 0.00000 1.00000 1376.00000 ] 0 0.25000 -0.25000
( 208 64 344 ) ( 208 64 216 ) ( 208 -64 344 ) oak2 [ 0.00000 1.00000 0.00000 -256.00000 ] [ 0.00000 0.00000 1.00000 1376.00000 ] 0 0.25000 -0.25000
( -208 130 294 ) ( 208 138 286 ) ( 624 138 286 ) oak2 [ 1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 1.00000 0.00000 725.09169 ] 0 0.25000 -0.17678
( 208 128 276 ) ( -208 136 276 ) ( -624 136 276 ) oak2 [ 0.00000 -1.00000 0.00000 512.00000 ] [ -1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( 208 136 284 ) ( -624 136 276 ) ( -208 136 276 ) oak2 [ -1.00000 0.00000 0.00000 -816.00000 ] [ 0.00000 0.00000 1.00000 1632.00000 ] 0 0.25000 -0.25000
( 208 128 276 ) ( -208 128 292 ) ( 208 128 292 ) oak2 [ 1.00000 0.00000 0.00000 -1488.00000 ] [ 0.00000 0.00000 1.00000 1112.44576 ] 0 0.25000 -0.25000
}
// Brush 52
// poly:p[56]
{
( -192 180 244 ) ( -192 180 372 ) ( -192 52 244 ) oak2 [ 0.00000 -1.00000 0.00000 720.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( 192 180 244 ) ( 192 180 116 ) ( 192 52 244 ) oak2 [ 0.00000 1.00000 0.00000 -720.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( -208 244 195 ) ( 208 260 181 ) ( 624 260 181 ) oak2 [ 1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 1.00000 0.00000 1295.20638 ] 0 0.25000 -0.18814
( 208 244 176 ) ( -208 252 176 ) ( -624 252 176 ) oak2 [ 0.00000 -1.00000 0.00000 976.00000 ] [ -1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( 208 260 181 ) ( -624 260 176 ) ( -208 260 176 ) oak2 [ -1.00000 0.00000 0.00000 -1584.00000 ] [ 0.00000 0.00000 1.00000 720.00000 ] 0 0.25000 -0.25000
( -208 244 195 ) ( 624 244 176 ) ( 208 244 176 ) oak2 [ 1.00000 0.00000 0.00000 48.00000 ] [ 0.00000 0.00000 1.00000 712.44578 ] 0 0.25000 -0.25000
}
// Brush 53
// poly:p[57]
{
( 192 76 244 ) ( 192 76 372 ) ( 192 204 244 ) oak2 [ 0.00000 1.00000 0.00000 -304.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( -192 76 244 ) ( -192 76 116 ) ( -192 204 244 ) oak2 [ 0.00000 -1.00000 0.00000 304.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( 208 12 195 ) ( -208 -4 181 ) ( -624 -4 181 ) oak2 [ -1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 -1.00000 0.00000 -65.45219 ] 0 0.25000 -0.18814
( -208 12 176 ) ( 208 4 176 ) ( 624 4 176 ) oak2 [ 0.00000 1.00000 0.00000 -48.00000 ] [ 1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( -208 -4 181 ) ( 624 -4 176 ) ( 208 -4 176 ) oak2 [ 1.00000 0.00000 0.00000 -1584.00000 ] [ 0.00000 0.00000 1.00000 720.00000 ] 0 0.25000 -0.25000
( 208 12 195 ) ( -624 12 176 ) ( -208 12 176 ) oak2 [ -1.00000 0.00000 0.00000 48.00000 ] [ 0.00000 0.00000 1.00000 712.44578 ] 0 0.25000 -0.25000
}
// Brush 54
// poly:p[58]
{
( -256 152 -64 ) ( -256 24 -64 ) ( -128 152 -64 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 -1.00000 0.00000 -304.00000 ] 0 0.50000 -0.50000
( -256 152 0 ) ( -256 280 0 ) ( -128 152 0 ) Floor_slate01 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 304.00000 ] 0 0.50000 -0.50000
( -256 96 -56 ) ( -256 96 72 ) ( -128 96 -56 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -256 208 -56 ) ( -256 208 72 ) ( -384 208 -56 ) stonewall [ -1.00000 0.00000 0.00000 -512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -224 152 -56 ) ( -224 152 72 ) ( -224 24 -56 ) stonewall [ 0.00000 -1.00000 0.00000 304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -192 152 -56 ) ( -192 152 72 ) ( -192 280 -56 ) stonewall [ 0.00000 1.00000 0.00000 -304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
}
// Brush 55
// poly:p[59]
{
( -256 152 -64 ) ( -256 24 -64 ) ( -128 152 -64 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 -1.00000 0.00000 -304.00000 ] 0 0.50000 -0.50000
( -256 152 -12 ) ( -256 280 -12 ) ( -128 152 -12 ) Floor_slate01 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 304.00000 ] 0 0.50000 -0.50000
( -256 96 -56 ) ( -256 96 72 ) ( -128 96 -56 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -256 208 -56 ) ( -256 208 72 ) ( -384 208 -56 ) stonewall [ -1.00000 0.00000 0.00000 -512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -252 152 -56 ) ( -252 152 72 ) ( -252 24 -56 ) stonewall [ 0.00000 -1.00000 0.00000 304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -224 152 -56 ) ( -224 152 72 ) ( -224 280 -56 ) stonewall [ 0.00000 1.00000 0.00000 -304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
}
}
// Entity 1
// portal:b[1]
{
"classname" "portal"
"ambient_light" "0"
// Brush 0
// portal:b[1] -> poly:p[1]
{
( -248 112 72 ) ( -376 112 72 ) ( -248 112 200 ) NULL [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) NULL [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 192 64 ) ( -64 192 192 ) ( -192 192 64 ) NULL [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) NULL [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) NULL [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) NULL [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
}
// Entity 2
// portal:b[2]
{
"classname" "portal"
"ambient_light" "0"
// Brush 0
// portal:b[2] -> poly:p[1]
{
( 108 24 268 ) ( -20 24 268 ) ( 108 24 396 ) NULL [ 1.00000 0.00000 0.00000 -216.00000 ] [ 0.00000 0.00000 1.00000 536.00000 ] 0 0.50000 -0.50000
( 108 56 332 ) ( 108 184 332 ) ( 236 56 332 ) NULL [ 1.00000 0.00000 0.00000 -216.00000 ] [ 0.00000 1.00000 0.00000 112.00000 ] 0 0.50000 -0.50000
( 292 88 260 ) ( 292 88 388 ) ( 164 88 260 ) NULL [ -1.00000 0.00000 0.00000 584.00000 ] [ 0.00000 0.00000 1.00000 520.00000 ] 0 0.50000 -0.50000
( 164 -8 260 ) ( 164 -8 388 ) ( 164 -136 260 ) NULL [ 0.00000 -1.00000 0.00000 -16.00000 ] [ 0.00000 0.00000 1.00000 520.00000 ] 0 0.50000 -0.50000
( 292 -8 328 ) ( 292 -136 328 ) ( 420 -8 328 ) NULL [ 1.00000 0.00000 0.00000 -584.00000 ] [ 0.00000 -1.00000 0.00000 16.00000 ] 0 0.50000 -0.50000
( 204 -8 260 ) ( 204 -136 260 ) ( 204 -8 388 ) NULL [ 0.00000 1.00000 0.00000 16.00000 ] [ 0.00000 0.00000 1.00000 520.00000 ] 0 0.50000 -0.50000
}
}
// Entity 3
// detail:b[54]
{
"classname" "detail"
// Brush 0
// detail:b[54] -> poly:p[1]
{
( 196 288 140 ) ( 216 128 280 ) ( 236 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 192 288 156 ) ( 208 128 296 ) ( 192 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( 192 128 296 ) ( 208 128 280 ) ( 192 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( 192 281 156 ) ( 208 281 140 ) ( 224 281 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( 192 160 240 ) ( 192 160 368 ) ( 192 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( 208 160 240 ) ( 208 160 368 ) ( 208 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 1
// detail:b[54] -> poly:p[2]
{
( -204 288 140 ) ( -184 128 280 ) ( -164 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( -208 288 156 ) ( -192 128 296 ) ( -208 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( -208 128 296 ) ( -192 128 280 ) ( -208 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( -208 281 156 ) ( -192 281 140 ) ( -176 281 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( -208 160 240 ) ( -208 160 368 ) ( -208 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( -192 160 240 ) ( -192 160 368 ) ( -192 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 2
// detail:b[54] -> poly:p[3]
{
( -180 288 140 ) ( -160 128 280 ) ( -140 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 -704.00000 ] 0 0.18814 -0.25000
( -184 288 156 ) ( -168 128 296 ) ( -184 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 704.00000 ] 0 0.18814 -0.25000
( -184 128 296 ) ( -168 128 280 ) ( -184 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 -832.00000 ] 0 0.25000 -0.25000
( -184 249 156 ) ( -168 249 140 ) ( -152 249 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 576.00000 ] 0 0.25000 -0.25000
( -184 160 240 ) ( -184 160 368 ) ( -184 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( -168 160 240 ) ( -168 160 368 ) ( -168 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 3
// detail:b[54] -> poly:p[4]
{
( 172 288 140 ) ( 192 128 280 ) ( 212 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 704.00000 ] 0 0.18814 -0.25000
( 168 288 156 ) ( 184 128 296 ) ( 168 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 -704.00000 ] 0 0.18814 -0.25000
( 168 128 296 ) ( 184 128 280 ) ( 168 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 576.00000 ] 0 0.25000 -0.25000
( 168 249 156 ) ( 184 249 140 ) ( 200 249 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 -832.00000 ] 0 0.25000 -0.25000
( 168 160 240 ) ( 168 160 368 ) ( 168 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( 184 160 240 ) ( 184 160 368 ) ( 184 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 4
// detail:b[54] -> poly:p[5]
{
( 180 -32 140 ) ( 160 128 280 ) ( 140 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -704.00000 ] 0 0.18814 -0.25000
( 184 -32 156 ) ( 168 128 296 ) ( 184 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 704.00000 ] 0 0.18814 -0.25000
( 184 128 296 ) ( 168 128 280 ) ( 184 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 -832.00000 ] 0 0.25000 -0.25000
( 184 95 156 ) ( 168 95 140 ) ( 152 95 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 576.00000 ] 0 0.25000 -0.25000
( 184 96 240 ) ( 184 96 368 ) ( 184 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 168 96 240 ) ( 168 96 368 ) ( 168 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 5
// detail:b[54] -> poly:p[6]
{
( -72 288 140 ) ( -52 128 280 ) ( -32 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 -272.00000 ] 0 0.18814 -0.25000
( -76 288 156 ) ( -60 128 296 ) ( -76 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 272.00000 ] 0 0.18814 -0.25000
( -76 128 296 ) ( -60 128 280 ) ( -76 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 -400.00000 ] 0 0.25000 -0.25000
( -76 281 156 ) ( -60 281 140 ) ( -44 281 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 144.00000 ] 0 0.25000 -0.25000
( -76 160 240 ) ( -76 160 368 ) ( -76 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( -60 160 240 ) ( -60 160 368 ) ( -60 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 6
// detail:b[54] -> poly:p[7]
{
( 64 288 140 ) ( 84 128 280 ) ( 104 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 272.00000 ] 0 0.18814 -0.25000
( 60 288 156 ) ( 76 128 296 ) ( 60 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 -272.00000 ] 0 0.18814 -0.25000
( 60 128 296 ) ( 76 128 280 ) ( 60 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 144.00000 ] 0 0.25000 -0.25000
( 60 281 156 ) ( 76 281 140 ) ( 92 281 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 -400.00000 ] 0 0.25000 -0.25000
( 60 160 240 ) ( 60 160 368 ) ( 60 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( 76 160 240 ) ( 76 160 368 ) ( 76 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 7
// detail:b[54] -> poly:p[8]
{
( -196 -32 140 ) ( -216 128 280 ) ( -236 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( -192 -32 156 ) ( -208 128 296 ) ( -192 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( -192 128 296 ) ( -208 128 280 ) ( -192 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( -192 -25 156 ) ( -208 -25 140 ) ( -224 -25 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( -192 96 240 ) ( -192 96 368 ) ( -192 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( -208 96 240 ) ( -208 96 368 ) ( -208 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 8
// detail:b[54] -> poly:p[9]
{
( -172 -32 140 ) ( -192 128 280 ) ( -212 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 704.00000 ] 0 0.18814 -0.25000
( -168 -32 156 ) ( -184 128 296 ) ( -168 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 -704.00000 ] 0 0.18814 -0.25000
( -168 128 296 ) ( -184 128 280 ) ( -168 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 576.00000 ] 0 0.25000 -0.25000
( -168 7 156 ) ( -184 7 140 ) ( -200 7 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 -832.00000 ] 0 0.25000 -0.25000
( -168 96 240 ) ( -168 96 368 ) ( -168 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( -184 96 240 ) ( -184 96 368 ) ( -184 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 9
// detail:b[54] -> poly:p[10]
{
( 156 24 184 ) ( 284 24 184 ) ( 156 24 312 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 192 96 240 ) ( 192 96 368 ) ( 192 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
( 208 96 240 ) ( 208 96 368 ) ( 208 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 208 -25 156 ) ( 192 -25 140 ) ( 176 -25 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( 208 -32 156 ) ( 192 128 296 ) ( 208 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 204 -32 140 ) ( 184 128 280 ) ( 164 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
}
// Brush 10
// detail:b[54] -> poly:p[11]
{
( 156 88 184 ) ( 28 88 184 ) ( 156 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 204 -32 140 ) ( 184 128 280 ) ( 164 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( 208 -32 156 ) ( 192 128 296 ) ( 208 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 208 128 296 ) ( 192 128 280 ) ( 208 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( 208 96 240 ) ( 208 96 368 ) ( 208 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 192 96 240 ) ( 192 96 368 ) ( 192 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 11
// detail:b[54] -> poly:p[12]
{
( 204 80 184 ) ( 204 80 312 ) ( 204 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 24 184 ) ( 156 24 312 ) ( 284 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 208 96 240 ) ( 208 96 368 ) ( 208 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 208 -32 156 ) ( 192 128 296 ) ( 208 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 204 -32 140 ) ( 184 128 280 ) ( 164 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( 156 88 184 ) ( 156 88 312 ) ( 28 88 184 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 12
// detail:b[54] -> poly:p[13]
{
( 72 -32 140 ) ( 52 128 280 ) ( 32 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -272.00000 ] 0 0.18814 -0.25000
( 76 -32 156 ) ( 60 128 296 ) ( 76 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 272.00000 ] 0 0.18814 -0.25000
( 76 128 296 ) ( 60 128 280 ) ( 76 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 -400.00000 ] 0 0.25000 -0.25000
( 76 -25 156 ) ( 60 -25 140 ) ( 44 -25 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 144.00000 ] 0 0.25000 -0.25000
( 76 96 240 ) ( 76 96 368 ) ( 76 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 60 96 240 ) ( 60 96 368 ) ( 60 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 13
// detail:b[54] -> poly:p[14]
{
( -64 -32 140 ) ( -84 128 280 ) ( -104 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 272.00000 ] 0 0.18814 -0.25000
( -60 -32 156 ) ( -76 128 296 ) ( -60 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 -272.00000 ] 0 0.18814 -0.25000
( -60 128 296 ) ( -76 128 280 ) ( -60 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 144.00000 ] 0 0.25000 -0.25000
( -60 -25 156 ) ( -76 -25 140 ) ( -92 -25 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 -400.00000 ] 0 0.25000 -0.25000
( -60 96 240 ) ( -60 96 368 ) ( -60 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( -76 96 240 ) ( -76 96 368 ) ( -76 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 14
// detail:b[54] -> poly:p[15]
{
( 208 192 344 ) ( 208 192 472 ) ( 208 320 344 ) oak2 [ 0.00000 1.00000 0.00000 -768.00000 ] [ 0.00000 0.00000 1.00000 1376.00000 ] 0 0.25000 -0.25000
( -208 192 344 ) ( -208 192 216 ) ( -208 320 344 ) oak2 [ 0.00000 -1.00000 0.00000 768.00000 ] [ 0.00000 0.00000 1.00000 1376.00000 ] 0 0.25000 -0.25000
( 208 126 294 ) ( -208 118 286 ) ( -624 118 286 ) oak2 [ -1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 -1.00000 0.00000 -723.06296 ] 0 0.25000 -0.17678
( -208 128 276 ) ( 208 120 276 ) ( 624 120 276 ) oak2 [ 0.00000 1.00000 0.00000 -512.00000 ] [ 1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( -208 120 284 ) ( 624 120 276 ) ( 208 120 276 ) oak2 [ 1.00000 0.00000 0.00000 -816.00000 ] [ 0.00000 0.00000 1.00000 1632.00000 ] 0 0.25000 -0.25000
( -208 128 276 ) ( 208 128 292 ) ( -208 128 292 ) oak2 [ -1.00000 0.00000 0.00000 -1488.00000 ] [ 0.00000 0.00000 1.00000 1112.44576 ] 0 0.25000 -0.25000
}
// Brush 15
// detail:b[54] -> poly:p[16]
{
( -128 92 204 ) ( -128 92 332 ) ( 0 92 204 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -128 212 204 ) ( -128 212 76 ) ( 0 212 204 ) oak2 [ -1.00000 0.00000 0.00000 -512.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -128 32 152 ) ( -128 160 152 ) ( 0 32 152 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.25000 -0.25000
( -128 32 132 ) ( -128 160 132 ) ( -256 32 132 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.25000 -0.25000
( -200 32 204 ) ( -200 160 204 ) ( -200 32 332 ) oak2 [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -176 32 204 ) ( -176 160 204 ) ( -176 32 76 ) oak2 [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
}
// Brush 16
// detail:b[54] -> poly:p[17]
{
( 111.73170 58.41463 12.00064 ) ( 21.19512 -22.75610 12.00064 ) ( 192.90244 -32.12195 12.00064 ) oak2 [ 0.66755 -0.74457 0.00000 -130.91890 ] [ -0.74457 -0.66754 0.00000 -514.48649 ] 0 0.23749 -0.23749
( 111.73170 58.41463 19.60039 ) ( 202.26830 139.58536 19.60039 ) ( 192.90244 -32.12195 19.60039 ) oak2 [ 0.66755 -0.74457 0.00000 -130.91891 ] [ 0.74457 0.66755 0.00000 514.48647 ] 0 0.23749 -0.23749
( 151.34146 93.92683 72.79859 ) ( 151.34146 93.92683 194.39449 ) ( 232.51219 3.39024 72.79859 ) oak2 [ 0.00000 -1.00000 0.00000 531.17242 ] [ 0.00000 0.00000 1.00000 306.53072 ] 0 0.17683 -0.23749
( 157 99 72.79859 ) ( 157 99 194.39449 ) ( 75.82927 189.53659 72.79859 ) oak2 [ 0.00000 1.00000 0.00000 -559.86204 ] [ 0.00000 0.00000 1.00000 306.53072 ] 0 0.17683 -0.23749
( 121.87805 47.09756 72.79859 ) ( 121.87805 47.09756 194.39449 ) ( 31.34146 -34.07317 72.79859 ) oak2 [ -1.00000 0.00000 0.00000 689.24137 ] [ 0.00000 0.00000 1.00000 306.53072 ] 0 0.17683 -0.23749
( 147.24390 18.80488 72.79859 ) ( 147.24390 18.80488 194.39449 ) ( 237.78049 99.97561 72.79859 ) oak2 [ 1.00000 0.00000 0.00000 -832.68961 ] [ 0.00000 0.00000 1.00000 306.53072 ] 0 0.17683 -0.23749
}
// Brush 17
// detail:b[54] -> poly:p[18]
{
( 233.01740 72.87109 -11.85824 ) ( 298.59262 158.69655 -51.60079 ) ( 159.61966 149.54950 32.62524 ) oak2 [ -0.69148 0.72239 0.00000 687.94701 ] [ 0.60712 0.79461 0.00000 1049.34702 ] 0 0.20731 -0.21096
( 236.74559 72.87109 -5.70672 ) ( 171.17036 -12.95436 34.03584 ) ( 163.34784 149.54950 38.77676 ) oak2 [ -0.69148 0.72239 0.00000 702.40958 ] [ -0.60712 -0.79461 0.00000 -1062.26821 ] 0 0.20731 -0.21096
( 234.15379 35.32246 54.74126 ) ( 293.80487 35.32246 153.16553 ) ( 160.75604 112.00087 99.22475 ) oak2 [ -0.85520 0.00000 0.51830 1025.33874 ] [ 0.51830 0.00000 0.85520 748.17081 ] 0 0.16763 -0.22478
( 230.05533 29.95837 57.22517 ) ( 289.70642 29.95837 155.64944 ) ( 303.45306 -46.72005 12.74170 ) oak2 [ 0.85520 0.00000 -0.51830 -996.74915 ] [ 0.51830 0.00000 0.85520 748.17079 ] 0 0.16763 -0.22478
( 253.66821 82.45589 42.91434 ) ( 313.31927 82.45589 141.33861 ) ( 319.24341 168.28134 3.17180 ) oak2 [ 0.85520 0.00000 -0.51830 -1300.01782 ] [ 0.51830 0.00000 0.85520 748.17078 ] 0 0.14976 -0.22478
( 230.73143 106.41790 56.81542 ) ( 290.38251 106.41790 155.23969 ) ( 165.15622 20.59245 96.55798 ) oak2 [ -0.85520 0.00000 0.51830 1120.93105 ] [ 0.51830 0.00000 0.85520 748.17079 ] 0 0.14976 -0.22478
}
// Brush 18
// detail:b[54] -> poly:p[19]
{
( 130.48888 114.73466 3.97083 ) ( 15.84720 127.93260 -1.35620 ) ( 116.25642 8.42595 46.87973 ) oak2 [ -0.13269 -0.99116 0.00000 615.44509 ] [ -0.99344 0.11437 0.00000 -506.36916 ] 0 0.20949 -0.22539
( 130.48888 117.43706 10.66613 ) ( 245.13058 104.23911 15.99315 ) ( 116.25642 11.12835 53.57503 ) oak2 [ -0.13269 -0.99116 0.00000 628.26266 ] [ 0.99344 -0.11437 0.00000 504.77787 ] 0 0.20949 -0.22539
( 180.64462 130.57971 59.86382 ) ( 180.64462 173.81802 166.98863 ) ( 166.41216 24.27101 102.77272 ) oak2 [ 0.00000 -0.92731 0.37429 440.72265 ] [ 0.00000 0.37429 0.92731 462.64901 ] 0 0.22391 -0.22563
( 187.80972 129.75485 60.19675 ) ( 187.80972 172.99315 167.32158 ) ( 202.04219 236.06355 17.28786 ) oak2 [ 0.00000 0.92731 -0.37429 -436.74992 ] [ 0.00000 0.37429 0.92731 462.64905 ] 0 0.22391 -0.22563
( 128.70982 123.06522 62.89686 ) ( 128.70982 166.30353 170.02168 ) ( 14.06814 136.26315 57.56983 ) oak2 [ -0.99892 0.00000 -0.04642 574.82957 ] [ 0.00000 0.00000 1.00000 272.02900 ] 0 0.22415 -0.20923
( 124.26218 89.84376 76.30589 ) ( 124.26218 133.08206 183.43071 ) ( 238.90387 76.64581 81.63291 ) oak2 [ 0.99892 0.00000 0.04642 -554.96601 ] [ 0.00000 0.00000 1.00000 337.10480 ] 0 0.22415 -0.20923
}
// Brush 19
// detail:b[54] -> poly:p[20]
{
( 164.75107 117.66170 37.80904 ) ( 95.07772 200.03149 69.48974 ) ( 76.49887 52.63239 12.79777 ) oak2 [ -0.80505 -0.59321 0.00000 944.51700 ] [ -0.64581 0.76350 0.00000 -14.30742 ] 0 0.21411 -0.21071
( 164.75107 115.13896 44.36815 ) ( 234.42441 32.76917 12.68746 ) ( 76.49887 50.10966 19.35688 ) oak2 [ -0.80505 -0.59321 0.00000 936.89055 ] [ 0.64581 -0.76350 0.00000 23.96751 ] 0 0.21411 -0.21071
( 195.23314 61.44305 76.42159 ) ( 195.23314 21.07933 181.36726 ) ( 106.98096 -3.58625 51.41031 ) oak2 [ -0.96211 0.00000 -0.27267 1132.65609 ] [ 0.00000 0.00000 1.00000 102.89780 ] 0 0.17916 -0.20497
( 199.58774 56.29494 74.44154 ) ( 199.58774 15.93121 179.38722 ) ( 287.83994 121.32425 99.45281 ) oak2 [ 0.96211 0.00000 0.27267 -1157.91938 ] [ 0.00000 0.00000 1.00000 87.21684 ] 0 0.17916 -0.20497
( 153.71954 89.35117 87.15547 ) ( 153.71954 48.98745 192.10115 ) ( 84.04620 171.72096 118.83617 ) oak2 [ 0.00000 0.93335 0.35898 -665.33703 ] [ 0.00000 -0.35898 0.93335 224.35672 ] 0 0.17237 -0.21961
( 126.14073 69.02952 79.33945 ) ( 126.14073 28.66580 184.28514 ) ( 195.81407 -13.34028 47.65876 ) oak2 [ 0.00000 -0.93335 -0.35898 539.02017 ] [ 0.00000 -0.35898 0.93335 224.35671 ] 0 0.17237 -0.21961
}
}
// Entity 4
// light_omni:e[60]
{
"classname" "light_omni"
"origin" "164 68 36"
"color" "192 160 140"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1500"
}
// Entity 5
// light_omni:e[61]
{
"classname" "light_omni"
"origin" "-184 152 100"
"color" "245 245 255"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1000"
}
// Entity 6
// light_omni:e[62]
{
"classname" "light_omni"
"origin" "184 56 328"
"color" "245 245 255"
"alarm_type" "0"
"falloff1" "50"
"falloff2" "600"
}

View File

@@ -0,0 +1,680 @@
// This map has been written by QuArK - Quake Army Knife, QuArK 6.3
// It is a map for the game Torque.
// For more information see QuArK's Home Page : http://www.planetquake.com/quark
// Entity 0
// worldspawn
{
"classname" "worldspawn"
"detail_number" "1"
"min_pixels" "60"
"geometry_scale" "32.0"
"light_geometry_scale" "16.0"
"ambient_color" "0 0 0"
"emergency_ambient_color" "0 0 0"
"mapversion" "220"
"oldstyle_lighting" "0"
"rad_subdivision_u" "4"
"rad_subdivision_v" "4"
"rad_arealight_multiplier" "1000000"
"rad_pointlight_multiplier" "1.0"
"rad_convergence" "1.0"
"rad_iteration_limiter" "0"
"rad_directlight_only" "0"
"rad_use_nusselts" "0"
"rad_ambientterm" "0"
"rad_adaptive_degradation" "1"
"rad_adaptive_threshold" "15"
"rad_adaptive_max_x" "128"
"rad_adaptive_max_y" "128"
"rad_defaultreflectivity" ".38 .38 .38"
"rad_defaultemissioncolor" "0.0 0.0 0.0"
"rad_defaultemissionintensity" "0.0"
"rad_octree_threshold" "50000"
"rad_octree_minnoderadius" "5.0"
"rad_octree_maxtreedepth" "50"
"rad_bsp_gaussian" "8"
"rad_bsp_searchrange" "5"
"rad_lightmap_gamma" "1.0"
"rad_lightmap_width" "256"
"rad_lightmap_height" "256"
// Brush 0
// poly:p[2]
{
( -64 248 64 ) ( -192 248 64 ) ( -64 248 192 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 256 64 ) ( -64 256 192 ) ( -192 256 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
}
// Brush 1
// poly:p[3]
{
( -64 0 64 ) ( -192 0 64 ) ( -64 0 192 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 -184 184 ) ( -64 -56 184 ) ( 64 -184 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 -368.00000 ] 0 0.50000 -0.50000
( 192 -184 64 ) ( 192 -184 192 ) ( 192 -56 64 ) stonewall [ 0.00000 1.00000 0.00000 368.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 -184 64 ) ( -192 -184 192 ) ( -192 -312 64 ) stonewall [ 0.00000 -1.00000 0.00000 -368.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( -192 8 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 -184 8 ) ( -64 -312 8 ) ( 64 -184 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 2
// poly:p[4]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 156 8 116 ) ( 212 8 116 ) stonewall [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 276 80 124 ) ( 148 -48 124 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 3
// poly:p[5]
{
( 156 104 124 ) ( 268 132 64 ) ( 212 132 64 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 169.19466 ] 0 0.50000 -0.45309
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 212 8 116 ) ( 156 8 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
}
// Brush 4
// poly:p[6]
{
( 156 124 8 ) ( 156 124 64 ) ( 212 124 64 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
}
// Brush 5
// poly:p[7]
{
( 148 16 68 ) ( 276 16 68 ) ( 148 16 196 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 6
// poly:p[8]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 116 ) ( 148 -48 116 ) ( 276 80 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 276 80 124 ) ( 148 -48 124 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 7
// poly:p[9]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 8
// poly:p[10]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 9
// poly:p[11]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 212 80 184 ) ( 212 80 312 ) ( 212 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 80 184 ) ( 156 80 312 ) ( 156 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 16 184 ) ( 148 16 312 ) ( 276 16 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 208 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 10
// poly:p[12]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 208 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 96 184 ) ( 148 96 312 ) ( 20 96 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 80 184 ) ( 156 80 312 ) ( 156 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 212 80 184 ) ( 212 80 312 ) ( 212 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 11
// poly:p[13]
{
( 164 80 184 ) ( 164 -48 184 ) ( 164 80 312 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 80 184 ) ( 156 80 312 ) ( 156 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 208 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 12
// poly:p[14]
{
( 204 80 184 ) ( 204 208 184 ) ( 204 80 312 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 208 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 212 80 184 ) ( 212 80 312 ) ( 212 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 13
// poly:p[15]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 216 80 184 ) ( 216 80 312 ) ( 216 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 152 80 184 ) ( 152 80 312 ) ( 152 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 12 184 ) ( 148 12 312 ) ( 276 12 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 14
// poly:p[16]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 148 100 184 ) ( 148 100 312 ) ( 20 100 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 152 80 184 ) ( 152 80 312 ) ( 152 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 216 80 184 ) ( 216 80 312 ) ( 216 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 15
// poly:p[17]
{
( 164 80 184 ) ( 164 -48 184 ) ( 164 80 312 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 152 80 184 ) ( 152 80 312 ) ( 152 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 16
// poly:p[18]
{
( 204 80 184 ) ( 204 208 184 ) ( 204 80 312 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 216 80 184 ) ( 216 80 312 ) ( 216 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 17
// poly:p[19]
{
( 148 80 68 ) ( 148 208 68 ) ( 148 80 196 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 132 64 ) ( 268 132 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 169.19466 ] 0 0.50000 -0.45309
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 8 124 ) ( 156 8 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 8 68 ) ( 148 8 196 ) ( 276 8 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 18
// poly:p[20]
{
( 156 40 76 ) ( 140 32 64 ) ( 148 32 64 ) stonewall [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 0.00000 1.00000 161.83685 ] 0 0.50000 -0.41603
( 156 40 76 ) ( 140 88 76 ) ( 148 88 76 ) stonewall [ 1.00000 0.00000 0.00000 -314.14459 ] [ 0.00000 1.00000 0.00000 88.00000 ] 0 0.50000 -0.50000
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 16 68 ) ( 148 16 196 ) ( 276 16 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 80 68 ) ( 156 -48 68 ) ( 156 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 19
// poly:p[21]
{
( 156 88 76 ) ( 156 96 64 ) ( 148 96 64 ) stonewall [ 1.00000 0.00000 0.00000 -328.00000 ] [ 0.00000 0.00000 1.00000 181.77974 ] 0 0.50000 -0.41603
( 156 80 68 ) ( 156 -48 68 ) ( 156 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 132 64 ) ( 268 132 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 169.19466 ] 0 0.50000 -0.45309
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 156 40 76 ) ( 140 88 76 ) ( 148 88 76 ) stonewall [ 1.00000 0.00000 0.00000 -314.14459 ] [ 0.00000 1.00000 0.00000 88.00000 ] 0 0.50000 -0.50000
}
// Brush 20
// poly:p[22]
{
( 156 124 8 ) ( 156 124 64 ) ( 212 124 64 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 132 64 ) ( 156 132 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 16 8 ) ( 268 16 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 21
// poly:p[23]
{
( 148 16 68 ) ( 276 16 68 ) ( 148 16 196 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 16 8 ) ( 268 16 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 8 68 ) ( 148 8 196 ) ( 276 8 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
}
// Brush 22
// poly:p[24]
{
( 204 80 68 ) ( 204 208 68 ) ( 204 80 196 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 124 8 ) ( 212 124 64 ) ( 156 124 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 16 8 ) ( 268 16 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 16 68 ) ( 148 16 196 ) ( 276 16 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 23
// poly:p[25]
{
( 192 80 12 ) ( 192 208 12 ) ( 192 80 140 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
( 156 132 -48 ) ( 212 132 8 ) ( 156 132 8 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 43.94286 ] 0 0.50000 -0.50000
( 148 80 8 ) ( 148 208 8 ) ( 276 80 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 12 ) ( 216 80 140 ) ( 216 208 12 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
( 156 132 -64 ) ( 212 16 -64 ) ( 268 16 -64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 8 12 ) ( 148 8 140 ) ( 276 8 12 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
}
// Brush 24
// poly:p[26]
{
( 156 132 12 ) ( 268 16 12 ) ( 212 16 12 ) Floor_slate01 [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 156 124 8 ) ( 212 124 64 ) ( 156 124 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 16 8 ) ( 268 16 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 16 68 ) ( 148 16 196 ) ( 276 16 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 204 80 68 ) ( 204 -48 68 ) ( 204 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 25
// poly:p[27]
{
( 148 32 68 ) ( 276 32 68 ) ( 148 32 196 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 80 68 ) ( 156 -48 68 ) ( 156 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 16 68 ) ( 148 16 196 ) ( 276 16 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 156 132 12 ) ( 212 16 12 ) ( 268 16 12 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 26
// poly:p[28]
{
( 156 96 8 ) ( 156 96 64 ) ( 212 96 64 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 156 132 12 ) ( 212 16 12 ) ( 268 16 12 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 156 124 8 ) ( 212 124 64 ) ( 156 124 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 80 68 ) ( 156 -48 68 ) ( 156 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 27
// poly:p[29]
{
( -248 128 136 ) ( -120 128 136 ) ( -248 256 136 ) stonewall [ -1.00000 0.00000 0.00000 -496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 28
// poly:p[30]
{
( -192 0 184 ) ( -184 256 184 ) ( -192 256 184 ) stonewall [ -1.00000 0.00000 0.00000 -240.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( -192 256 184 ) ( -184 128 296 ) ( -192 128 296 ) stonewall [ -1.00000 0.00000 0.00000 -384.00000 ] [ 0.00000 -1.00000 0.00000 -652.45717 ] 0 0.50000 -0.37629
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 0 184 ) ( -184 128 296 ) ( -176 128 296 ) stonewall [ 1.00000 0.00000 0.00000 384.00000 ] [ 0.00000 1.00000 0.00000 27.87212 ] 0 0.50000 -0.37629
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 29
// poly:p[31]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 -64 64 ) ( 192 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 128 296 ) ( 200 128 296 ) stonewall [ 1.00000 0.00000 0.00000 -368.00000 ] [ 0.00000 1.00000 0.00000 27.87212 ] 0 0.50000 -0.37629
( 184 64 64 ) ( 184 64 192 ) ( 184 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 256 184 ) ( 184 256 184 ) stonewall [ -1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
}
// Brush 30
// poly:p[32]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 256 184 ) ( 184 256 184 ) stonewall [ -1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( 184 256 184 ) ( 192 128 296 ) ( 184 128 296 ) stonewall [ -1.00000 0.00000 0.00000 368.00000 ] [ 0.00000 -1.00000 0.00000 -652.45717 ] 0 0.50000 -0.37629
( 184 64 64 ) ( 184 64 192 ) ( 184 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 128 296 ) ( 200 128 296 ) stonewall [ 1.00000 0.00000 0.00000 -368.00000 ] [ 0.00000 1.00000 0.00000 27.87212 ] 0 0.50000 -0.37629
( 192 64 64 ) ( 192 -64 64 ) ( 192 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 31
// poly:p[33]
{
( -248 96 72 ) ( -120 96 72 ) ( -248 96 200 ) stonewall [ -1.00000 0.00000 0.00000 -496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
}
// Brush 32
// poly:p[34]
{
( -128 136 0 ) ( -128 8 0 ) ( 0 136 0 ) oak2 [ 0.00000 -1.00000 0.00000 544.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 136 136 ) ( -128 264 136 ) ( 0 136 136 ) oak2 [ 0.00000 1.00000 0.00000 -544.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 192 72 ) ( -128 192 200 ) ( 0 192 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 208 72 ) ( -128 208 200 ) ( -256 208 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ -1.00000 0.00000 0.00000 512.00000 ] 0 0.25000 -0.25000
( -196 136 72 ) ( -196 136 200 ) ( -196 8 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 -1.00000 0.00000 -544.00000 ] 0 0.25000 -0.25000
( -180 136 72 ) ( -180 136 200 ) ( -180 264 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 1.00000 0.00000 544.00000 ] 0 0.25000 -0.25000
}
// Brush 33
// poly:p[35]
{
( 156 24 184 ) ( 284 24 184 ) ( 156 24 312 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 96 248 ) ( 156 96 376 ) ( 156 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 -32 156 ) ( -672 -32 156 ) thatch [ 1.00000 0.00000 0.00000 1024.00000 ] [ 0.00000 0.00000 1.00000 240.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
}
// Brush 34
// poly:p[36]
{
( 156 88 184 ) ( 28 88 184 ) ( 156 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 128 296 ) ( -224 128 312 ) ( -672 128 312 ) thatch [ -1.00000 0.00000 0.00000 256.00000 ] [ 0.00000 0.00000 1.00000 -16.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 156 96 248 ) ( 156 96 376 ) ( 156 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
}
// Brush 35
// poly:p[37]
{
( 204 80 184 ) ( 204 80 312 ) ( 204 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 24 184 ) ( 156 24 312 ) ( 284 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 156 88 184 ) ( 156 88 312 ) ( 28 88 184 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 36
// poly:p[38]
{
( 164 80 184 ) ( 164 -48 184 ) ( 164 80 312 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 128 184 ) ( 156 128 312 ) ( 28 128 184 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( -224 96 248 ) ( -224 96 376 ) ( -224 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 156 -32 184 ) ( 156 -32 312 ) ( 284 -32 184 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 37
// poly:p[39]
{
( -128 40 0 ) ( -128 -88 0 ) ( 0 40 0 ) oak2 [ 0.00000 -1.00000 0.00000 160.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 40 136 ) ( -128 168 136 ) ( 0 40 136 ) oak2 [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 96 72 ) ( -128 96 200 ) ( 0 96 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 112 72 ) ( -128 112 200 ) ( -256 112 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ -1.00000 0.00000 0.00000 512.00000 ] 0 0.25000 -0.25000
( -196 40 72 ) ( -196 40 200 ) ( -196 -88 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.25000 -0.25000
( -180 40 72 ) ( -180 40 200 ) ( -180 168 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.25000 -0.25000
}
// Brush 38
// poly:p[40]
{
( -248 208 72 ) ( -376 208 72 ) ( -248 208 200 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 39
// group:g[41] -> poly:p[1]
{
( -64 64 -64 ) ( -64 -64 -64 ) ( 64 64 -64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -64 0 64 ) ( -64 0 192 ) ( 64 0 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 256 64 ) ( -64 256 192 ) ( -192 256 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( 64 64 8 ) ( -64 -64 8 ) Floor_slate01 [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
}
// Brush 40
// poly:p[42]
{
( -224 288 156 ) ( 224 128 296 ) ( 672 128 296 ) thatch [ 1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 -1.00000 0.00000 -410.77452 ] 0 0.50000 -0.37629
( -224 288 160 ) ( 224 128 300 ) ( -224 128 300 ) thatch [ -1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 -1.00000 0.00000 -522.97045 ] 0 0.50000 -0.37629
( -224 128 296 ) ( 224 128 312 ) ( 672 128 312 ) thatch [ 1.00000 0.00000 0.00000 256.00000 ] [ 0.00000 0.00000 1.00000 -16.00000 ] 0 0.50000 -0.50000
( -224 288 160 ) ( 224 288 156 ) ( 672 288 156 ) thatch [ -1.00000 0.00000 0.00000 1024.00000 ] [ 0.00000 0.00000 1.00000 240.00000 ] 0 0.50000 -0.50000
( -224 160 248 ) ( -224 160 376 ) ( -224 32 248 ) thatch [ 0.00000 -1.00000 0.00000 320.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 160 248 ) ( 224 160 376 ) ( 224 288 248 ) thatch [ 0.00000 1.00000 0.00000 -320.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
}
// Brush 41
// poly:p[44]
{
( -208 64 344 ) ( -208 64 472 ) ( -208 -64 344 ) oak2 [ 0.00000 -1.00000 0.00000 256.00000 ] [ 0.00000 0.00000 1.00000 1376.00000 ] 0 0.25000 -0.25000
( 208 64 344 ) ( 208 64 216 ) ( 208 -64 344 ) oak2 [ 0.00000 1.00000 0.00000 -256.00000 ] [ 0.00000 0.00000 1.00000 1376.00000 ] 0 0.25000 -0.25000
( -208 130 294 ) ( 208 138 286 ) ( 624 138 286 ) oak2 [ 1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 1.00000 0.00000 725.09169 ] 0 0.25000 -0.17678
( 208 128 276 ) ( -208 136 276 ) ( -624 136 276 ) oak2 [ 0.00000 -1.00000 0.00000 512.00000 ] [ -1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( 208 136 284 ) ( -624 136 276 ) ( -208 136 276 ) oak2 [ -1.00000 0.00000 0.00000 -816.00000 ] [ 0.00000 0.00000 1.00000 1632.00000 ] 0 0.25000 -0.25000
( 208 128 276 ) ( -208 128 292 ) ( 208 128 292 ) oak2 [ 1.00000 0.00000 0.00000 -1488.00000 ] [ 0.00000 0.00000 1.00000 1112.44576 ] 0 0.25000 -0.25000
}
// Brush 42
// poly:p[45]
{
( -192 180 244 ) ( -192 180 372 ) ( -192 52 244 ) oak2 [ 0.00000 -1.00000 0.00000 720.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( 192 180 244 ) ( 192 180 116 ) ( 192 52 244 ) oak2 [ 0.00000 1.00000 0.00000 -720.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( -208 244 195 ) ( 208 260 181 ) ( 624 260 181 ) oak2 [ 1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 1.00000 0.00000 1295.20638 ] 0 0.25000 -0.18814
( 208 244 176 ) ( -208 252 176 ) ( -624 252 176 ) oak2 [ 0.00000 -1.00000 0.00000 976.00000 ] [ -1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( 208 260 181 ) ( -624 260 176 ) ( -208 260 176 ) oak2 [ -1.00000 0.00000 0.00000 -1584.00000 ] [ 0.00000 0.00000 1.00000 720.00000 ] 0 0.25000 -0.25000
( -208 244 195 ) ( 624 244 176 ) ( 208 244 176 ) oak2 [ 1.00000 0.00000 0.00000 48.00000 ] [ 0.00000 0.00000 1.00000 712.44578 ] 0 0.25000 -0.25000
}
// Brush 43
// poly:p[46]
{
( 192 76 244 ) ( 192 76 372 ) ( 192 204 244 ) oak2 [ 0.00000 1.00000 0.00000 -304.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( -192 76 244 ) ( -192 76 116 ) ( -192 204 244 ) oak2 [ 0.00000 -1.00000 0.00000 304.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( 208 12 195 ) ( -208 -4 181 ) ( -624 -4 181 ) oak2 [ -1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 -1.00000 0.00000 -65.45219 ] 0 0.25000 -0.18814
( -208 12 176 ) ( 208 4 176 ) ( 624 4 176 ) oak2 [ 0.00000 1.00000 0.00000 -48.00000 ] [ 1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( -208 -4 181 ) ( 624 -4 176 ) ( 208 -4 176 ) oak2 [ 1.00000 0.00000 0.00000 -1584.00000 ] [ 0.00000 0.00000 1.00000 720.00000 ] 0 0.25000 -0.25000
( 208 12 195 ) ( -624 12 176 ) ( -208 12 176 ) oak2 [ -1.00000 0.00000 0.00000 48.00000 ] [ 0.00000 0.00000 1.00000 712.44578 ] 0 0.25000 -0.25000
}
// Brush 44
// poly:p[47]
{
( -256 152 -64 ) ( -256 24 -64 ) ( -128 152 -64 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 -1.00000 0.00000 -304.00000 ] 0 0.50000 -0.50000
( -256 152 0 ) ( -256 280 0 ) ( -128 152 0 ) Floor_slate01 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 304.00000 ] 0 0.50000 -0.50000
( -256 96 -56 ) ( -256 96 72 ) ( -128 96 -56 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -256 208 -56 ) ( -256 208 72 ) ( -384 208 -56 ) stonewall [ -1.00000 0.00000 0.00000 -512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -224 152 -56 ) ( -224 152 72 ) ( -224 24 -56 ) stonewall [ 0.00000 -1.00000 0.00000 304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -192 152 -56 ) ( -192 152 72 ) ( -192 280 -56 ) stonewall [ 0.00000 1.00000 0.00000 -304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
}
// Brush 45
// poly:p[48]
{
( -256 152 -64 ) ( -256 24 -64 ) ( -128 152 -64 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 -1.00000 0.00000 -304.00000 ] 0 0.50000 -0.50000
( -256 152 -12 ) ( -256 280 -12 ) ( -128 152 -12 ) Floor_slate01 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 304.00000 ] 0 0.50000 -0.50000
( -256 96 -56 ) ( -256 96 72 ) ( -128 96 -56 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -256 208 -56 ) ( -256 208 72 ) ( -384 208 -56 ) stonewall [ -1.00000 0.00000 0.00000 -512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -252 152 -56 ) ( -252 152 72 ) ( -252 24 -56 ) stonewall [ 0.00000 -1.00000 0.00000 304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -224 152 -56 ) ( -224 152 72 ) ( -224 280 -56 ) stonewall [ 0.00000 1.00000 0.00000 -304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
}
}
// Entity 1
// portal:b[1]
{
"classname" "portal"
"ambient_light" "0"
// Brush 0
// portal:b[1] -> poly:p[1]
{
( -248 112 72 ) ( -376 112 72 ) ( -248 112 200 ) NULL [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) NULL [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 192 64 ) ( -64 192 192 ) ( -192 192 64 ) NULL [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) NULL [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) NULL [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) NULL [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
}
// Entity 2
// detail:b[43]
{
"classname" "detail"
// Brush 0
// detail:b[43] -> poly:p[1]
{
( 196 288 140 ) ( 216 128 280 ) ( 236 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 192 288 156 ) ( 208 128 296 ) ( 192 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( 192 128 296 ) ( 208 128 280 ) ( 192 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( 192 281 156 ) ( 208 281 140 ) ( 224 281 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( 192 160 240 ) ( 192 160 368 ) ( 192 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( 208 160 240 ) ( 208 160 368 ) ( 208 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 1
// detail:b[43] -> poly:p[2]
{
( -204 288 140 ) ( -184 128 280 ) ( -164 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( -208 288 156 ) ( -192 128 296 ) ( -208 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( -208 128 296 ) ( -192 128 280 ) ( -208 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( -208 281 156 ) ( -192 281 140 ) ( -176 281 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( -208 160 240 ) ( -208 160 368 ) ( -208 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( -192 160 240 ) ( -192 160 368 ) ( -192 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 2
// detail:b[43] -> poly:p[3]
{
( 172 288 140 ) ( 192 128 280 ) ( 212 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 704.00000 ] 0 0.18814 -0.25000
( 168 288 156 ) ( 184 128 296 ) ( 168 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 -704.00000 ] 0 0.18814 -0.25000
( 168 128 296 ) ( 184 128 280 ) ( 168 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 576.00000 ] 0 0.25000 -0.25000
( 168 249 156 ) ( 184 249 140 ) ( 200 249 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 -832.00000 ] 0 0.25000 -0.25000
( 168 160 240 ) ( 168 160 368 ) ( 168 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( 184 160 240 ) ( 184 160 368 ) ( 184 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 3
// detail:b[43] -> poly:p[4]
{
( 180 -32 140 ) ( 160 128 280 ) ( 140 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -704.00000 ] 0 0.18814 -0.25000
( 184 -32 156 ) ( 168 128 296 ) ( 184 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 704.00000 ] 0 0.18814 -0.25000
( 184 128 296 ) ( 168 128 280 ) ( 184 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 -832.00000 ] 0 0.25000 -0.25000
( 184 95 156 ) ( 168 95 140 ) ( 152 95 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 576.00000 ] 0 0.25000 -0.25000
( 184 96 240 ) ( 184 96 368 ) ( 184 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 168 96 240 ) ( 168 96 368 ) ( 168 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 4
// detail:b[43] -> poly:p[5]
{
( 64 288 140 ) ( 84 128 280 ) ( 104 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 272.00000 ] 0 0.18814 -0.25000
( 60 288 156 ) ( 76 128 296 ) ( 60 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 -272.00000 ] 0 0.18814 -0.25000
( 60 128 296 ) ( 76 128 280 ) ( 60 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 144.00000 ] 0 0.25000 -0.25000
( 60 281 156 ) ( 76 281 140 ) ( 92 281 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 -400.00000 ] 0 0.25000 -0.25000
( 60 160 240 ) ( 60 160 368 ) ( 60 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( 76 160 240 ) ( 76 160 368 ) ( 76 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 5
// detail:b[43] -> poly:p[6]
{
( -196 -32 140 ) ( -216 128 280 ) ( -236 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( -192 -32 156 ) ( -208 128 296 ) ( -192 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( -192 128 296 ) ( -208 128 280 ) ( -192 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( -192 -25 156 ) ( -208 -25 140 ) ( -224 -25 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( -192 96 240 ) ( -192 96 368 ) ( -192 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( -208 96 240 ) ( -208 96 368 ) ( -208 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 6
// detail:b[43] -> poly:p[7]
{
( 156 24 184 ) ( 284 24 184 ) ( 156 24 312 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 192 96 240 ) ( 192 96 368 ) ( 192 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
( 208 96 240 ) ( 208 96 368 ) ( 208 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 208 -25 156 ) ( 192 -25 140 ) ( 176 -25 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( 208 -32 156 ) ( 192 128 296 ) ( 208 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 204 -32 140 ) ( 184 128 280 ) ( 164 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
}
// Brush 7
// detail:b[43] -> poly:p[8]
{
( 156 88 184 ) ( 28 88 184 ) ( 156 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 204 -32 140 ) ( 184 128 280 ) ( 164 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( 208 -32 156 ) ( 192 128 296 ) ( 208 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 208 128 296 ) ( 192 128 280 ) ( 208 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( 208 96 240 ) ( 208 96 368 ) ( 208 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 192 96 240 ) ( 192 96 368 ) ( 192 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 8
// detail:b[43] -> poly:p[9]
{
( 204 80 184 ) ( 204 80 312 ) ( 204 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 24 184 ) ( 156 24 312 ) ( 284 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 208 96 240 ) ( 208 96 368 ) ( 208 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 208 -32 156 ) ( 192 128 296 ) ( 208 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 204 -32 140 ) ( 184 128 280 ) ( 164 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( 156 88 184 ) ( 156 88 312 ) ( 28 88 184 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 9
// detail:b[43] -> poly:p[10]
{
( 72 -32 140 ) ( 52 128 280 ) ( 32 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -272.00000 ] 0 0.18814 -0.25000
( 76 -32 156 ) ( 60 128 296 ) ( 76 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 272.00000 ] 0 0.18814 -0.25000
( 76 128 296 ) ( 60 128 280 ) ( 76 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 -400.00000 ] 0 0.25000 -0.25000
( 76 -25 156 ) ( 60 -25 140 ) ( 44 -25 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 144.00000 ] 0 0.25000 -0.25000
( 76 96 240 ) ( 76 96 368 ) ( 76 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 60 96 240 ) ( 60 96 368 ) ( 60 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 10
// detail:b[43] -> poly:p[11]
{
( 208 192 344 ) ( 208 192 472 ) ( 208 320 344 ) oak2 [ 0.00000 1.00000 0.00000 -768.00000 ] [ 0.00000 0.00000 1.00000 1376.00000 ] 0 0.25000 -0.25000
( -208 192 344 ) ( -208 192 216 ) ( -208 320 344 ) oak2 [ 0.00000 -1.00000 0.00000 768.00000 ] [ 0.00000 0.00000 1.00000 1376.00000 ] 0 0.25000 -0.25000
( 208 126 294 ) ( -208 118 286 ) ( -624 118 286 ) oak2 [ -1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 -1.00000 0.00000 -723.06296 ] 0 0.25000 -0.17678
( -208 128 276 ) ( 208 120 276 ) ( 624 120 276 ) oak2 [ 0.00000 1.00000 0.00000 -512.00000 ] [ 1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( -208 120 284 ) ( 624 120 276 ) ( 208 120 276 ) oak2 [ 1.00000 0.00000 0.00000 -816.00000 ] [ 0.00000 0.00000 1.00000 1632.00000 ] 0 0.25000 -0.25000
( -208 128 276 ) ( 208 128 292 ) ( -208 128 292 ) oak2 [ -1.00000 0.00000 0.00000 -1488.00000 ] [ 0.00000 0.00000 1.00000 1112.44576 ] 0 0.25000 -0.25000
}
// Brush 11
// detail:b[43] -> poly:p[12]
{
( -128 92 204 ) ( -128 92 332 ) ( 0 92 204 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -128 212 204 ) ( -128 212 76 ) ( 0 212 204 ) oak2 [ -1.00000 0.00000 0.00000 -512.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -128 32 152 ) ( -128 160 152 ) ( 0 32 152 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.25000 -0.25000
( -128 32 132 ) ( -128 160 132 ) ( -256 32 132 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.25000 -0.25000
( -200 32 204 ) ( -200 160 204 ) ( -200 32 332 ) oak2 [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -176 32 204 ) ( -176 160 204 ) ( -176 32 76 ) oak2 [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
}
// Brush 12
// detail:b[43] -> poly:p[13]
{
( 36.17580 78.87630 15.16536 ) ( -234.13631 5.28963 15.16536 ) ( 86.36391 -85.99497 15.16536 ) oak2 [ 0.29121 -0.95666 0.00000 197.95927 ] [ -0.96489 -0.26267 0.00000 -105.27538 ] 0 0.33660 -0.54717
( 36.17580 78.87630 26.44961 ) ( 306.48792 152.46295 26.44961 ) ( 86.36391 -85.99497 26.44961 ) oak2 [ 0.29121 -0.95666 0.00000 197.95927 ] [ 0.96489 0.26267 0.00000 105.27538 ] 0 0.33660 -0.54717
( 154.43733 111.07046 105.43930 ) ( 154.43733 111.07046 285.98718 ) ( 204.62546 -53.80080 105.43930 ) oak2 [ 0.00000 -1.00000 0.00000 344.92412 ] [ 0.00000 0.00000 1.00000 299.00613 ] 0 0.32201 -0.35263
( 171.33185 115.66962 105.43930 ) ( 171.33185 115.66962 285.98718 ) ( 121.14372 280.54089 105.43930 ) oak2 [ 0.00000 1.00000 0.00000 -359.20659 ] [ 0.00000 0.00000 1.00000 299.00613 ] 0 0.32201 -0.35263
( 42.44932 58.26738 105.43930 ) ( 42.44932 58.26738 285.98718 ) ( -227.86279 -15.31928 105.43930 ) oak2 [ -1.00000 0.00000 0.00000 80.40353 ] [ 0.00000 0.00000 1.00000 299.00613 ] 0 0.52795 -0.35263
( 58.13309 6.74512 105.43930 ) ( 58.13309 6.74512 285.98718 ) ( 328.44519 80.33179 105.43930 ) oak2 [ 1.00000 0.00000 0.00000 -110.11030 ] [ 0.00000 0.00000 1.00000 299.00613 ] 0 0.52795 -0.35263
}
}
// Entity 3
// light_omni:e[49]
{
"classname" "light_omni"
"origin" "164 68 36"
"color" "192 160 140"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1500"
}
// Entity 4
// light_omni:e[50]
{
"classname" "light_omni"
"origin" "-184 152 100"
"color" "245 245 255"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1000"
}
// Entity 5
// light_omni:e[51]
{
"classname" "light_omni"
"origin" "184 56 328"
"color" "245 245 255"
"alarm_type" "0"
"falloff1" "50"
"falloff2" "600"
}

View File

@@ -0,0 +1,530 @@
// This map has been written by QuArK - Quake Army Knife, QuArK 6.3
// It is a map for the game Torque.
// For more information see QuArK's Home Page : http://www.planetquake.com/quark
// Entity 0
// worldspawn
{
"classname" "worldspawn"
"detail_number" "2"
"min_pixels" "25"
"geometry_scale" "32.0"
"light_geometry_scale" "16.0"
"ambient_color" "0 0 0"
"emergency_ambient_color" "0 0 0"
"mapversion" "220"
"oldstyle_lighting" "0"
"rad_subdivision_u" "4"
"rad_subdivision_v" "4"
"rad_arealight_multiplier" "1000000"
"rad_pointlight_multiplier" "1.0"
"rad_convergence" "1.0"
"rad_iteration_limiter" "0"
"rad_directlight_only" "0"
"rad_use_nusselts" "0"
"rad_ambientterm" "0"
"rad_adaptive_degradation" "1"
"rad_adaptive_threshold" "15"
"rad_adaptive_max_x" "128"
"rad_adaptive_max_y" "128"
"rad_defaultreflectivity" ".38 .38 .38"
"rad_defaultemissioncolor" "0.0 0.0 0.0"
"rad_defaultemissionintensity" "0.0"
"rad_octree_threshold" "50000"
"rad_octree_minnoderadius" "5.0"
"rad_octree_maxtreedepth" "50"
"rad_bsp_gaussian" "8"
"rad_bsp_searchrange" "5"
"rad_lightmap_gamma" "1.0"
"rad_lightmap_width" "256"
"rad_lightmap_height" "256"
// Brush 0
// poly:p[2]
{
( -64 248 64 ) ( -192 248 64 ) ( -64 248 192 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 256 64 ) ( -64 256 192 ) ( -192 256 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
}
// Brush 1
// poly:p[3]
{
( -64 0 64 ) ( -192 0 64 ) ( -64 0 192 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 -184 184 ) ( -64 -56 184 ) ( 64 -184 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 -368.00000 ] 0 0.50000 -0.50000
( 192 -184 64 ) ( 192 -184 192 ) ( 192 -56 64 ) stonewall [ 0.00000 1.00000 0.00000 368.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 -184 64 ) ( -192 -184 192 ) ( -192 -312 64 ) stonewall [ 0.00000 -1.00000 0.00000 -368.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( -192 8 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 -184 8 ) ( -64 -312 8 ) ( 64 -184 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 2
// poly:p[4]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 156 8 116 ) ( 212 8 116 ) stonewall [ -1.00000 0.00000 0.00000 328.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 276 80 124 ) ( 148 -48 124 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 3
// poly:p[5]
{
( 156 104 124 ) ( 268 132 64 ) ( 212 132 64 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 169.19466 ] 0 0.50000 -0.45309
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 156 104 116 ) ( 212 8 116 ) ( 156 8 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
}
// Brush 4
// poly:p[6]
{
( 156 124 8 ) ( 156 124 64 ) ( 212 124 64 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
}
// Brush 5
// poly:p[7]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 116 ) ( 148 -48 116 ) ( 276 80 116 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 276 80 124 ) ( 148 -48 124 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 6
// poly:p[8]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 7
// poly:p[9]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 8
// poly:p[10]
{
( 148 96 184 ) ( 276 96 184 ) ( 148 96 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 212 80 184 ) ( 212 80 312 ) ( 212 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 80 184 ) ( 156 80 312 ) ( 156 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 16 184 ) ( 148 16 312 ) ( 276 16 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 208 312 ) ( 276 80 312 ) oak2 [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 80 124 ) ( 148 -48 124 ) ( 276 80 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 9
// poly:p[11]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 216 80 184 ) ( 216 80 312 ) ( 216 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 152 80 184 ) ( 152 80 312 ) ( 152 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 12 184 ) ( 148 12 312 ) ( 276 12 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 10
// poly:p[12]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 148 100 184 ) ( 148 100 312 ) ( 20 100 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 152 80 184 ) ( 152 80 312 ) ( 152 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 216 80 184 ) ( 216 80 312 ) ( 216 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 11
// poly:p[13]
{
( 164 80 184 ) ( 164 -48 184 ) ( 164 80 312 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 152 80 184 ) ( 152 80 312 ) ( 152 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 12
// poly:p[14]
{
( 204 80 184 ) ( 204 208 184 ) ( 204 80 312 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 88 184 ) ( 148 88 312 ) ( 20 88 184 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 312 ) ( 148 -48 312 ) ( 276 80 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 296.00000 ] 0 0.50000 -0.50000
( 216 80 184 ) ( 216 80 312 ) ( 216 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 24 184 ) ( 148 24 312 ) ( 276 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 13
// poly:p[15]
{
( 148 80 68 ) ( 148 208 68 ) ( 148 80 196 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 64 ) ( 212 16 64 ) ( 268 16 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 132 64 ) ( 268 132 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 169.19466 ] 0 0.50000 -0.45309
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 104 124 ) ( 212 8 124 ) ( 156 8 124 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 8 68 ) ( 148 8 196 ) ( 276 8 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 14
// poly:p[16]
{
( 204 80 68 ) ( 204 208 68 ) ( 204 80 196 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 124 8 ) ( 212 124 64 ) ( 156 124 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 80 196 ) ( 216 208 68 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 16 8 ) ( 268 16 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 16 68 ) ( 148 16 196 ) ( 276 16 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 15
// poly:p[17]
{
( 192 80 12 ) ( 192 208 12 ) ( 192 80 140 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
( 156 132 -48 ) ( 212 132 8 ) ( 156 132 8 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 43.94286 ] 0 0.50000 -0.50000
( 148 80 8 ) ( 148 208 8 ) ( 276 80 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 12 ) ( 216 80 140 ) ( 216 208 12 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
( 156 132 -64 ) ( 212 16 -64 ) ( 268 16 -64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 8 12 ) ( 148 8 140 ) ( 276 8 12 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
}
// Brush 16
// poly:p[18]
{
( 148 32 68 ) ( 276 32 68 ) ( 148 32 196 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 -48 68 ) ( 216 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 8 68 ) ( 148 8 196 ) ( 276 8 68 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 16 8 ) ( 268 16 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 17
// poly:p[19]
{
( 156 96 8 ) ( 156 96 64 ) ( 212 96 64 ) stonewall [ 1.00000 0.00000 0.00000 -72.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 16 8 ) ( 268 16 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 156 132 8 ) ( 212 132 64 ) ( 156 132 64 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 155.94287 ] 0 0.50000 -0.50000
( 148 80 64 ) ( 148 208 64 ) ( 276 80 64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 80 68 ) ( 148 80 196 ) ( 148 -48 68 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
( 216 80 68 ) ( 216 -48 68 ) ( 216 80 196 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 136.00000 ] 0 0.50000 -0.50000
}
// Brush 18
// poly:p[20]
{
( -248 128 136 ) ( -120 128 136 ) ( -248 256 136 ) stonewall [ -1.00000 0.00000 0.00000 -496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 19
// poly:p[21]
{
( -192 0 184 ) ( -184 256 184 ) ( -192 256 184 ) stonewall [ -1.00000 0.00000 0.00000 -240.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( -192 256 184 ) ( -184 128 296 ) ( -192 128 296 ) stonewall [ -1.00000 0.00000 0.00000 -384.00000 ] [ 0.00000 -1.00000 0.00000 -652.45717 ] 0 0.50000 -0.37629
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 0 184 ) ( -184 128 296 ) ( -176 128 296 ) stonewall [ 1.00000 0.00000 0.00000 384.00000 ] [ 0.00000 1.00000 0.00000 27.87212 ] 0 0.50000 -0.37629
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 20
// poly:p[22]
{
( 148 24 184 ) ( 276 24 184 ) ( 148 24 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 -64 64 ) ( 192 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 128 296 ) ( 200 128 296 ) stonewall [ 1.00000 0.00000 0.00000 -368.00000 ] [ 0.00000 1.00000 0.00000 27.87212 ] 0 0.50000 -0.37629
( 184 64 64 ) ( 184 64 192 ) ( 184 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 256 184 ) ( 184 256 184 ) stonewall [ -1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
}
// Brush 21
// poly:p[23]
{
( 148 88 184 ) ( 20 88 184 ) ( 148 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 256 184 ) ( 184 256 184 ) stonewall [ -1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( 184 256 184 ) ( 192 128 296 ) ( 184 128 296 ) stonewall [ -1.00000 0.00000 0.00000 368.00000 ] [ 0.00000 -1.00000 0.00000 -652.45717 ] 0 0.50000 -0.37629
( 184 64 64 ) ( 184 64 192 ) ( 184 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 128 296 ) ( 200 128 296 ) stonewall [ 1.00000 0.00000 0.00000 -368.00000 ] [ 0.00000 1.00000 0.00000 27.87212 ] 0 0.50000 -0.37629
( 192 64 64 ) ( 192 -64 64 ) ( 192 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 22
// poly:p[24]
{
( -248 96 72 ) ( -120 96 72 ) ( -248 96 200 ) stonewall [ -1.00000 0.00000 0.00000 -496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
}
// Brush 23
// poly:p[25]
{
( -128 136 0 ) ( -128 8 0 ) ( 0 136 0 ) oak2 [ 0.00000 -1.00000 0.00000 544.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 136 136 ) ( -128 264 136 ) ( 0 136 136 ) oak2 [ 0.00000 1.00000 0.00000 -544.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 192 72 ) ( -128 192 200 ) ( 0 192 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 208 72 ) ( -128 208 200 ) ( -256 208 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ -1.00000 0.00000 0.00000 512.00000 ] 0 0.25000 -0.25000
( -196 136 72 ) ( -196 136 200 ) ( -196 8 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 -1.00000 0.00000 -544.00000 ] 0 0.25000 -0.25000
( -180 136 72 ) ( -180 136 200 ) ( -180 264 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 1.00000 0.00000 544.00000 ] 0 0.25000 -0.25000
}
// Brush 24
// poly:p[26]
{
( 156 24 184 ) ( 284 24 184 ) ( 156 24 312 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 96 248 ) ( 156 96 376 ) ( 156 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 -32 156 ) ( -672 -32 156 ) thatch [ 1.00000 0.00000 0.00000 1024.00000 ] [ 0.00000 0.00000 1.00000 240.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
}
// Brush 25
// poly:p[27]
{
( 156 88 184 ) ( 28 88 184 ) ( 156 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 128 296 ) ( -224 128 312 ) ( -672 128 312 ) thatch [ -1.00000 0.00000 0.00000 256.00000 ] [ 0.00000 0.00000 1.00000 -16.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 156 96 248 ) ( 156 96 376 ) ( 156 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
}
// Brush 26
// poly:p[28]
{
( 204 80 184 ) ( 204 80 312 ) ( 204 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 24 184 ) ( 156 24 312 ) ( 284 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 156 88 184 ) ( 156 88 312 ) ( 28 88 184 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 27
// poly:p[29]
{
( 164 80 184 ) ( 164 -48 184 ) ( 164 80 312 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 128 184 ) ( 156 128 312 ) ( 28 128 184 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( -224 96 248 ) ( -224 96 376 ) ( -224 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 156 -32 184 ) ( 156 -32 312 ) ( 284 -32 184 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 28
// poly:p[30]
{
( -128 40 0 ) ( -128 -88 0 ) ( 0 40 0 ) oak2 [ 0.00000 -1.00000 0.00000 160.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 40 136 ) ( -128 168 136 ) ( 0 40 136 ) oak2 [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 96 72 ) ( -128 96 200 ) ( 0 96 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 112 72 ) ( -128 112 200 ) ( -256 112 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ -1.00000 0.00000 0.00000 512.00000 ] 0 0.25000 -0.25000
( -196 40 72 ) ( -196 40 200 ) ( -196 -88 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.25000 -0.25000
( -180 40 72 ) ( -180 40 200 ) ( -180 168 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.25000 -0.25000
}
// Brush 29
// poly:p[31]
{
( -248 208 72 ) ( -376 208 72 ) ( -248 208 200 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 30
// group:g[32] -> poly:p[1]
{
( -64 64 -64 ) ( -64 -64 -64 ) ( 64 64 -64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -64 0 64 ) ( -64 0 192 ) ( 64 0 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 256 64 ) ( -64 256 192 ) ( -192 256 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( 64 64 8 ) ( -64 -64 8 ) Floor_slate01 [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
}
// Brush 31
// poly:p[33]
{
( -224 288 156 ) ( 224 128 296 ) ( 672 128 296 ) thatch [ 1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 -1.00000 0.00000 -410.77452 ] 0 0.50000 -0.37629
( -224 288 160 ) ( 224 128 300 ) ( -224 128 300 ) thatch [ -1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 -1.00000 0.00000 -522.97045 ] 0 0.50000 -0.37629
( -224 128 296 ) ( 224 128 312 ) ( 672 128 312 ) thatch [ 1.00000 0.00000 0.00000 256.00000 ] [ 0.00000 0.00000 1.00000 -16.00000 ] 0 0.50000 -0.50000
( -224 288 160 ) ( 224 288 156 ) ( 672 288 156 ) thatch [ -1.00000 0.00000 0.00000 1024.00000 ] [ 0.00000 0.00000 1.00000 240.00000 ] 0 0.50000 -0.50000
( -224 160 248 ) ( -224 160 376 ) ( -224 32 248 ) thatch [ 0.00000 -1.00000 0.00000 320.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 160 248 ) ( 224 160 376 ) ( 224 288 248 ) thatch [ 0.00000 1.00000 0.00000 -320.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
}
// Brush 32
// poly:p[35]
{
( -192 180 244 ) ( -192 180 372 ) ( -192 52 244 ) oak2 [ 0.00000 -1.00000 0.00000 720.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( 192 180 244 ) ( 192 180 116 ) ( 192 52 244 ) oak2 [ 0.00000 1.00000 0.00000 -720.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( -208 244 195 ) ( 208 260 181 ) ( 624 260 181 ) oak2 [ 1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 1.00000 0.00000 1295.20638 ] 0 0.25000 -0.18814
( 208 244 176 ) ( -208 252 176 ) ( -624 252 176 ) oak2 [ 0.00000 -1.00000 0.00000 976.00000 ] [ -1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( 208 260 181 ) ( -624 260 176 ) ( -208 260 176 ) oak2 [ -1.00000 0.00000 0.00000 -1584.00000 ] [ 0.00000 0.00000 1.00000 720.00000 ] 0 0.25000 -0.25000
( -208 244 195 ) ( 624 244 176 ) ( 208 244 176 ) oak2 [ 1.00000 0.00000 0.00000 48.00000 ] [ 0.00000 0.00000 1.00000 712.44578 ] 0 0.25000 -0.25000
}
// Brush 33
// poly:p[36]
{
( 192 76 244 ) ( 192 76 372 ) ( 192 204 244 ) oak2 [ 0.00000 1.00000 0.00000 -304.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( -192 76 244 ) ( -192 76 116 ) ( -192 204 244 ) oak2 [ 0.00000 -1.00000 0.00000 304.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( 208 12 195 ) ( -208 -4 181 ) ( -624 -4 181 ) oak2 [ -1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 -1.00000 0.00000 -65.45219 ] 0 0.25000 -0.18814
( -208 12 176 ) ( 208 4 176 ) ( 624 4 176 ) oak2 [ 0.00000 1.00000 0.00000 -48.00000 ] [ 1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( -208 -4 181 ) ( 624 -4 176 ) ( 208 -4 176 ) oak2 [ 1.00000 0.00000 0.00000 -1584.00000 ] [ 0.00000 0.00000 1.00000 720.00000 ] 0 0.25000 -0.25000
( 208 12 195 ) ( -624 12 176 ) ( -208 12 176 ) oak2 [ -1.00000 0.00000 0.00000 48.00000 ] [ 0.00000 0.00000 1.00000 712.44578 ] 0 0.25000 -0.25000
}
// Brush 34
// poly:p[37]
{
( -256 152 -64 ) ( -256 24 -64 ) ( -128 152 -64 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 -1.00000 0.00000 -304.00000 ] 0 0.50000 -0.50000
( -256 152 0 ) ( -256 280 0 ) ( -128 152 0 ) Floor_slate01 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 304.00000 ] 0 0.50000 -0.50000
( -256 96 -56 ) ( -256 96 72 ) ( -128 96 -56 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -256 208 -56 ) ( -256 208 72 ) ( -384 208 -56 ) stonewall [ -1.00000 0.00000 0.00000 -512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -224 152 -56 ) ( -224 152 72 ) ( -224 24 -56 ) stonewall [ 0.00000 -1.00000 0.00000 304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -192 152 -56 ) ( -192 152 72 ) ( -192 280 -56 ) stonewall [ 0.00000 1.00000 0.00000 -304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
}
// Brush 35
// poly:p[38]
{
( -256 152 -64 ) ( -256 24 -64 ) ( -128 152 -64 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 -1.00000 0.00000 -304.00000 ] 0 0.50000 -0.50000
( -256 152 -12 ) ( -256 280 -12 ) ( -128 152 -12 ) Floor_slate01 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 304.00000 ] 0 0.50000 -0.50000
( -256 96 -56 ) ( -256 96 72 ) ( -128 96 -56 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -256 208 -56 ) ( -256 208 72 ) ( -384 208 -56 ) stonewall [ -1.00000 0.00000 0.00000 -512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -252 152 -56 ) ( -252 152 72 ) ( -252 24 -56 ) stonewall [ 0.00000 -1.00000 0.00000 304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -224 152 -56 ) ( -224 152 72 ) ( -224 280 -56 ) stonewall [ 0.00000 1.00000 0.00000 -304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
}
}
// Entity 1
// portal:b[1]
{
"classname" "portal"
"ambient_light" "0"
// Brush 0
// portal:b[1] -> poly:p[1]
{
( -248 112 72 ) ( -376 112 72 ) ( -248 112 200 ) NULL [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) NULL [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 192 64 ) ( -64 192 192 ) ( -192 192 64 ) NULL [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) NULL [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) NULL [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) NULL [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
}
// Entity 2
// detail:b[34]
{
"classname" "detail"
// Brush 0
// detail:b[34] -> poly:p[1]
{
( 196 288 140 ) ( 216 128 280 ) ( 236 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 192 288 156 ) ( 208 128 296 ) ( 192 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( 192 128 296 ) ( 208 128 280 ) ( 192 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( 192 281 156 ) ( 208 281 140 ) ( 224 281 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( 192 160 240 ) ( 192 160 368 ) ( 192 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( 208 160 240 ) ( 208 160 368 ) ( 208 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 1
// detail:b[34] -> poly:p[2]
{
( -204 288 140 ) ( -184 128 280 ) ( -164 128 280 ) oak2 [ 0.00000 -1.00000 0.00000 800.47783 ] [ 1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( -208 288 156 ) ( -192 128 296 ) ( -208 128 296 ) oak2 [ 0.00000 -1.00000 0.00000 800.43649 ] [ -1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( -208 128 296 ) ( -192 128 280 ) ( -208 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ 1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( -208 281 156 ) ( -192 281 140 ) ( -176 281 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ -1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( -208 160 240 ) ( -208 160 368 ) ( -208 32 240 ) oak2 [ 0.00000 -0.76281 0.64662 228.26069 ] [ 0.00000 -0.64662 -0.76281 -1116.39106 ] 0 0.25000 -0.25000
( -192 160 240 ) ( -192 160 368 ) ( -192 288 240 ) oak2 [ 0.00000 -0.75926 0.65079 27.76712 ] [ 0.00000 0.65079 0.75926 951.02314 ] 0 0.25000 -0.25000
}
// Brush 2
// detail:b[34] -> poly:p[3]
{
( -196 -32 140 ) ( -216 128 280 ) ( -236 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( -192 -32 156 ) ( -208 128 296 ) ( -192 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( -192 128 296 ) ( -208 128 280 ) ( -192 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( -192 -25 156 ) ( -208 -25 140 ) ( -224 -25 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( -192 96 240 ) ( -192 96 368 ) ( -192 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( -208 96 240 ) ( -208 96 368 ) ( -208 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 3
// detail:b[34] -> poly:p[4]
{
( 156 24 184 ) ( 284 24 184 ) ( 156 24 312 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 192 96 240 ) ( 192 96 368 ) ( 192 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
( 208 96 240 ) ( 208 96 368 ) ( 208 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 208 -25 156 ) ( 192 -25 140 ) ( 176 -25 140 ) oak2 [ 0.00000 0.00000 1.00000 -448.00006 ] [ 1.00000 0.00000 0.00000 672.00000 ] 0 0.25000 -0.25000
( 208 -32 156 ) ( 192 128 296 ) ( 208 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 204 -32 140 ) ( 184 128 280 ) ( 164 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
}
// Brush 4
// detail:b[34] -> poly:p[5]
{
( 156 88 184 ) ( 28 88 184 ) ( 156 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 204 -32 140 ) ( 184 128 280 ) ( 164 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( 208 -32 156 ) ( 192 128 296 ) ( 208 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 208 128 296 ) ( 192 128 280 ) ( 208 128 280 ) oak2 [ 0.00000 0.00000 1.00000 -1216.00000 ] [ -1.00000 0.00000 0.00000 -928.00000 ] 0 0.25000 -0.25000
( 208 96 240 ) ( 208 96 368 ) ( 208 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 192 96 240 ) ( 192 96 368 ) ( 192 -32 240 ) oak2 [ 0.00000 0.75926 0.65079 -749.71164 ] [ 0.00000 -0.65079 0.75926 284.61275 ] 0 0.25000 -0.25000
}
// Brush 5
// detail:b[34] -> poly:p[6]
{
( 204 80 184 ) ( 204 80 312 ) ( 204 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 24 184 ) ( 156 24 312 ) ( 284 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 208 96 240 ) ( 208 96 368 ) ( 208 224 240 ) oak2 [ 0.00000 0.76281 0.64662 -552.85988 ] [ 0.00000 0.64662 -0.76281 -454.25315 ] 0 0.25000 -0.25000
( 208 -32 156 ) ( 192 128 296 ) ( 208 128 296 ) oak2 [ 0.00000 1.00000 0.00000 -560.22217 ] [ 1.00000 0.00000 0.00000 800.00000 ] 0 0.18814 -0.25000
( 204 -32 140 ) ( 184 128 280 ) ( 164 128 280 ) oak2 [ 0.00000 1.00000 0.00000 -560.18148 ] [ -1.00000 0.00000 0.00000 -800.00000 ] 0 0.18814 -0.25000
( 156 88 184 ) ( 156 88 312 ) ( 28 88 184 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 6
// detail:b[34] -> poly:p[7]
{
( -128 92 204 ) ( -128 92 332 ) ( 0 92 204 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -128 212 204 ) ( -128 212 76 ) ( 0 212 204 ) oak2 [ -1.00000 0.00000 0.00000 -512.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -128 32 152 ) ( -128 160 152 ) ( 0 32 152 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.25000 -0.25000
( -128 32 132 ) ( -128 160 132 ) ( -256 32 132 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.25000 -0.25000
( -200 32 204 ) ( -200 160 204 ) ( -200 32 332 ) oak2 [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -176 32 204 ) ( -176 160 204 ) ( -176 32 76 ) oak2 [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
}
// Brush 7
// detail:b[34] -> poly:p[8]
{
( 36.17580 78.87630 15.16536 ) ( -234.13631 5.28963 15.16536 ) ( 86.36391 -85.99497 15.16536 ) oak2 [ 0.29121 -0.95666 0.00000 197.95927 ] [ -0.96489 -0.26267 0.00000 -105.27538 ] 0 0.33660 -0.54717
( 36.17580 78.87630 26.44961 ) ( 306.48792 152.46295 26.44961 ) ( 86.36391 -85.99497 26.44961 ) oak2 [ 0.29121 -0.95666 0.00000 197.95927 ] [ 0.96489 0.26267 0.00000 105.27538 ] 0 0.33660 -0.54717
( 154.43733 111.07046 105.43930 ) ( 154.43733 111.07046 285.98718 ) ( 204.62546 -53.80080 105.43930 ) oak2 [ 0.00000 -1.00000 0.00000 344.92412 ] [ 0.00000 0.00000 1.00000 299.00613 ] 0 0.32201 -0.35263
( 171.33185 115.66962 105.43930 ) ( 171.33185 115.66962 285.98718 ) ( 121.14372 280.54089 105.43930 ) oak2 [ 0.00000 1.00000 0.00000 -359.20659 ] [ 0.00000 0.00000 1.00000 299.00613 ] 0 0.32201 -0.35263
( 42.44932 58.26738 105.43930 ) ( 42.44932 58.26738 285.98718 ) ( -227.86279 -15.31928 105.43930 ) oak2 [ -1.00000 0.00000 0.00000 80.40353 ] [ 0.00000 0.00000 1.00000 299.00613 ] 0 0.52795 -0.35263
( 58.13309 6.74512 105.43930 ) ( 58.13309 6.74512 285.98718 ) ( 328.44519 80.33179 105.43930 ) oak2 [ 1.00000 0.00000 0.00000 -110.11030 ] [ 0.00000 0.00000 1.00000 299.00613 ] 0 0.52795 -0.35263
}
}
// Entity 3
// light_omni:e[39]
{
"classname" "light_omni"
"origin" "164 68 36"
"color" "192 160 140"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1500"
}
// Entity 4
// light_omni:e[40]
{
"classname" "light_omni"
"origin" "-184 152 100"
"color" "245 245 255"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1000"
}
// Entity 5
// light_omni:e[41]
{
"classname" "light_omni"
"origin" "184 56 328"
"color" "245 245 255"
"alarm_type" "0"
"falloff1" "50"
"falloff2" "600"
}

View File

@@ -0,0 +1,290 @@
// This map has been written by QuArK - Quake Army Knife, QuArK 6.3
// It is a map for the game Torque.
// For more information see QuArK's Home Page : http://www.planetquake.com/quark
// Entity 0
// worldspawn
{
"classname" "worldspawn"
"detail_number" "3"
"min_pixels" "10"
"geometry_scale" "32.0"
"light_geometry_scale" "16.0"
"ambient_color" "0 0 0"
"emergency_ambient_color" "0 0 0"
"mapversion" "220"
"oldstyle_lighting" "0"
"rad_subdivision_u" "4"
"rad_subdivision_v" "4"
"rad_arealight_multiplier" "1000000"
"rad_pointlight_multiplier" "1.0"
"rad_convergence" "1.0"
"rad_iteration_limiter" "0"
"rad_directlight_only" "0"
"rad_use_nusselts" "0"
"rad_ambientterm" "0"
"rad_adaptive_degradation" "1"
"rad_adaptive_threshold" "15"
"rad_adaptive_max_x" "128"
"rad_adaptive_max_y" "128"
"rad_defaultreflectivity" ".38 .38 .38"
"rad_defaultemissioncolor" "0.0 0.0 0.0"
"rad_defaultemissionintensity" "0.0"
"rad_octree_threshold" "50000"
"rad_octree_minnoderadius" "5.0"
"rad_octree_maxtreedepth" "50"
"rad_bsp_gaussian" "8"
"rad_bsp_searchrange" "5"
"rad_lightmap_gamma" "1.0"
"rad_lightmap_width" "256"
"rad_lightmap_height" "256"
// Brush 0
// poly:p[2]
{
( -64 248 64 ) ( -192 248 64 ) ( -64 248 192 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 256 64 ) ( -64 256 192 ) ( -192 256 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
}
// Brush 1
// poly:p[3]
{
( -64 0 64 ) ( -192 0 64 ) ( -64 0 192 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 -184 184 ) ( -64 -56 184 ) ( 64 -184 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 -368.00000 ] 0 0.50000 -0.50000
( 192 -184 64 ) ( 192 -184 192 ) ( 192 -56 64 ) stonewall [ 0.00000 1.00000 0.00000 368.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 -184 64 ) ( -192 -184 192 ) ( -192 -312 64 ) stonewall [ 0.00000 -1.00000 0.00000 -368.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( -192 8 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 -184 8 ) ( -64 -312 8 ) ( 64 -184 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 2
// poly:p[4]
{
( 148 0 184 ) ( 20 0 184 ) ( 148 0 312 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 8 ) ( 148 -48 8 ) ( 276 80 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 64 64 ) ( 184 192 64 ) ( 184 64 192 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 3
// poly:p[5]
{
( 148 96 184 ) ( 276 96 184 ) ( 148 96 312 ) stonewall [ -1.00000 0.00000 0.00000 296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 212 80 184 ) ( 212 80 312 ) ( 212 208 184 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 80 184 ) ( 156 80 312 ) ( 156 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 16 184 ) ( 148 16 312 ) ( 276 16 184 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 148 80 332 ) ( 148 208 332 ) ( 276 80 332 ) oak2 [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 148 80 8 ) ( 148 -48 8 ) ( 276 80 8 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
}
// Brush 4
// poly:p[6]
{
( 192 80 12 ) ( 192 208 12 ) ( 192 80 140 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
( 156 132 -48 ) ( 212 132 8 ) ( 156 132 8 ) stonewall [ -1.00000 0.00000 0.00000 552.00000 ] [ 0.00000 0.00000 1.00000 43.94286 ] 0 0.50000 -0.50000
( 148 80 128 ) ( 148 208 128 ) ( 276 80 128 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.50000 -0.50000
( 216 80 12 ) ( 216 80 140 ) ( 216 208 12 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
( 156 132 -64 ) ( 212 16 -64 ) ( 268 16 -64 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.50000 -0.50000
( 148 8 12 ) ( 148 8 140 ) ( 276 8 12 ) stonewall [ 1.00000 0.00000 0.00000 -296.00000 ] [ 0.00000 0.00000 1.00000 24.00000 ] 0 0.50000 -0.50000
}
// Brush 5
// poly:p[7]
{
( -248 128 136 ) ( -120 128 136 ) ( -248 256 136 ) stonewall [ -1.00000 0.00000 0.00000 -496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 184 ) ( -64 192 184 ) ( 64 64 184 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 6
// poly:p[8]
{
( -192 0 184 ) ( -184 256 184 ) ( -192 256 184 ) stonewall [ -1.00000 0.00000 0.00000 -240.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( -192 256 184 ) ( -184 128 296 ) ( -192 128 296 ) stonewall [ -1.00000 0.00000 0.00000 -384.00000 ] [ 0.00000 -1.00000 0.00000 -652.45717 ] 0 0.50000 -0.37629
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 0 184 ) ( -184 128 296 ) ( -176 128 296 ) stonewall [ 1.00000 0.00000 0.00000 384.00000 ] [ 0.00000 1.00000 0.00000 27.87212 ] 0 0.50000 -0.37629
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 7
// poly:p[9]
{
( 184 0 184 ) ( 192 256 184 ) ( 184 256 184 ) stonewall [ -1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 0.00000 ] 0 0.50000 -0.50000
( 184 256 184 ) ( 192 128 296 ) ( 184 128 296 ) stonewall [ -1.00000 0.00000 0.00000 368.00000 ] [ 0.00000 -1.00000 0.00000 -652.45717 ] 0 0.50000 -0.37629
( 184 64 64 ) ( 184 64 192 ) ( 184 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 184 0 184 ) ( 192 128 296 ) ( 200 128 296 ) stonewall [ 1.00000 0.00000 0.00000 -368.00000 ] [ 0.00000 1.00000 0.00000 27.87212 ] 0 0.50000 -0.37629
( 192 64 64 ) ( 192 -64 64 ) ( 192 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 8
// poly:p[10]
{
( -248 96 72 ) ( -120 96 72 ) ( -248 96 200 ) stonewall [ -1.00000 0.00000 0.00000 -496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 8 64 ) ( -64 8 192 ) ( 64 8 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
}
// Brush 9
// poly:p[11]
{
( -128 136 0 ) ( -128 8 0 ) ( 0 136 0 ) oak2 [ 0.00000 -1.00000 0.00000 544.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 136 136 ) ( -128 264 136 ) ( 0 136 136 ) oak2 [ 0.00000 1.00000 0.00000 -544.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 192 72 ) ( -128 192 200 ) ( 0 192 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 208 72 ) ( -128 208 200 ) ( -256 208 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ -1.00000 0.00000 0.00000 512.00000 ] 0 0.25000 -0.25000
( -196 136 72 ) ( -196 136 200 ) ( -196 8 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 -1.00000 0.00000 -544.00000 ] 0 0.25000 -0.25000
( -180 136 72 ) ( -180 136 200 ) ( -180 264 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 1.00000 0.00000 544.00000 ] 0 0.25000 -0.25000
}
// Brush 10
// poly:p[12]
{
( 156 24 184 ) ( 284 24 184 ) ( 156 24 312 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 96 248 ) ( 156 96 376 ) ( 156 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 -32 156 ) ( -672 -32 156 ) thatch [ 1.00000 0.00000 0.00000 1024.00000 ] [ 0.00000 0.00000 1.00000 240.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
}
// Brush 11
// poly:p[13]
{
( 156 88 184 ) ( 28 88 184 ) ( 156 88 312 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 128 296 ) ( -224 128 312 ) ( -672 128 312 ) thatch [ -1.00000 0.00000 0.00000 256.00000 ] [ 0.00000 0.00000 1.00000 -16.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 156 96 248 ) ( 156 96 376 ) ( 156 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
}
// Brush 12
// poly:p[14]
{
( 204 80 184 ) ( 204 80 312 ) ( 204 -48 184 ) stonewall [ 0.00000 -1.00000 0.00000 160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 24 184 ) ( 156 24 312 ) ( 284 24 184 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 96 248 ) ( 224 96 376 ) ( 224 224 248 ) thatch [ 0.00000 1.00000 0.00000 -192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 156 88 184 ) ( 156 88 312 ) ( 28 88 184 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 13
// poly:p[15]
{
( 164 80 184 ) ( 164 -48 184 ) ( 164 80 312 ) stonewall [ 0.00000 1.00000 0.00000 -160.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 156 128 184 ) ( 156 128 312 ) ( 28 128 184 ) stonewall [ -1.00000 0.00000 0.00000 312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
( 224 -32 156 ) ( -224 128 296 ) ( -672 128 296 ) thatch [ -1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 1.00000 0.00000 269.55481 ] 0 0.50000 -0.37629
( 224 -32 160 ) ( -224 128 300 ) ( 224 128 300 ) thatch [ 1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 1.00000 0.00000 157.35905 ] 0 0.50000 -0.37629
( -224 96 248 ) ( -224 96 376 ) ( -224 -32 248 ) thatch [ 0.00000 -1.00000 0.00000 192.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 156 -32 184 ) ( 156 -32 312 ) ( 284 -32 184 ) stonewall [ 1.00000 0.00000 0.00000 -312.00000 ] [ 0.00000 0.00000 1.00000 368.00000 ] 0 0.50000 -0.50000
}
// Brush 14
// poly:p[16]
{
( -128 40 0 ) ( -128 -88 0 ) ( 0 40 0 ) oak2 [ 0.00000 -1.00000 0.00000 160.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 40 136 ) ( -128 168 136 ) ( 0 40 136 ) oak2 [ 0.00000 1.00000 0.00000 -160.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 96 72 ) ( -128 96 200 ) ( 0 96 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 1.00000 0.00000 0.00000 -512.00000 ] 0 0.25000 -0.25000
( -128 112 72 ) ( -128 112 200 ) ( -256 112 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ -1.00000 0.00000 0.00000 512.00000 ] 0 0.25000 -0.25000
( -196 40 72 ) ( -196 40 200 ) ( -196 -88 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 -1.00000 0.00000 -160.00000 ] 0 0.25000 -0.25000
( -180 40 72 ) ( -180 40 200 ) ( -180 168 72 ) oak2 [ 0.00000 0.00000 1.00000 -288.00000 ] [ 0.00000 1.00000 0.00000 160.00000 ] 0 0.25000 -0.25000
}
// Brush 15
// poly:p[17]
{
( -248 208 72 ) ( -376 208 72 ) ( -248 208 200 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) stonewall [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 248 64 ) ( -64 248 192 ) ( -192 248 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
// Brush 16
// group:g[18] -> poly:p[1]
{
( -64 64 -64 ) ( -64 -64 -64 ) ( 64 64 -64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -64 0 64 ) ( -64 0 192 ) ( 64 0 64 ) stonewall [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 256 64 ) ( -64 256 192 ) ( -192 256 64 ) stonewall [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) stonewall [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( 192 64 64 ) ( 192 64 192 ) ( 192 192 64 ) stonewall [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( 64 64 8 ) ( -64 -64 8 ) Floor_slate01 [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
}
// Brush 17
// poly:p[19]
{
( -224 288 156 ) ( 224 128 296 ) ( 672 128 296 ) thatch [ 1.00000 0.00000 0.00000 -704.00000 ] [ 0.00000 -1.00000 0.00000 -410.77452 ] 0 0.50000 -0.37629
( -224 288 160 ) ( 224 128 300 ) ( -224 128 300 ) thatch [ -1.00000 0.00000 0.00000 192.00000 ] [ 0.00000 -1.00000 0.00000 -522.97045 ] 0 0.50000 -0.37629
( -224 128 296 ) ( 224 128 312 ) ( 672 128 312 ) thatch [ 1.00000 0.00000 0.00000 256.00000 ] [ 0.00000 0.00000 1.00000 -16.00000 ] 0 0.50000 -0.50000
( -224 288 160 ) ( 224 288 156 ) ( 672 288 156 ) thatch [ -1.00000 0.00000 0.00000 1024.00000 ] [ 0.00000 0.00000 1.00000 240.00000 ] 0 0.50000 -0.50000
( -224 160 248 ) ( -224 160 376 ) ( -224 32 248 ) thatch [ 0.00000 -1.00000 0.00000 320.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
( 224 160 248 ) ( 224 160 376 ) ( 224 288 248 ) thatch [ 0.00000 1.00000 0.00000 -320.00000 ] [ 0.00000 0.00000 1.00000 496.00000 ] 0 0.50000 -0.50000
}
// Brush 18
// poly:p[21]
{
( -192 180 244 ) ( -192 180 372 ) ( -192 52 244 ) oak2 [ 0.00000 -1.00000 0.00000 720.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( 192 180 244 ) ( 192 180 116 ) ( 192 52 244 ) oak2 [ 0.00000 1.00000 0.00000 -720.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( -208 244 195 ) ( 208 260 181 ) ( 624 260 181 ) oak2 [ 1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 1.00000 0.00000 1295.20638 ] 0 0.25000 -0.18814
( 208 244 176 ) ( -208 252 176 ) ( -624 252 176 ) oak2 [ 0.00000 -1.00000 0.00000 976.00000 ] [ -1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( 208 260 181 ) ( -624 260 176 ) ( -208 260 176 ) oak2 [ -1.00000 0.00000 0.00000 -1584.00000 ] [ 0.00000 0.00000 1.00000 720.00000 ] 0 0.25000 -0.25000
( -208 244 195 ) ( 624 244 176 ) ( 208 244 176 ) oak2 [ 1.00000 0.00000 0.00000 48.00000 ] [ 0.00000 0.00000 1.00000 712.44578 ] 0 0.25000 -0.25000
}
// Brush 19
// poly:p[22]
{
( 192 76 244 ) ( 192 76 372 ) ( 192 204 244 ) oak2 [ 0.00000 1.00000 0.00000 -304.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( -192 76 244 ) ( -192 76 116 ) ( -192 204 244 ) oak2 [ 0.00000 -1.00000 0.00000 304.00000 ] [ 0.00000 0.00000 1.00000 976.00000 ] 0 0.25000 -0.25000
( 208 12 195 ) ( -208 -4 181 ) ( -624 -4 181 ) oak2 [ -1.00000 0.00000 0.00000 96.00000 ] [ 0.00000 -1.00000 0.00000 -65.45219 ] 0 0.25000 -0.18814
( -208 12 176 ) ( 208 4 176 ) ( 624 4 176 ) oak2 [ 0.00000 1.00000 0.00000 -48.00000 ] [ 1.00000 0.00000 0.00000 816.00000 ] 0 0.25000 -0.25000
( -208 -4 181 ) ( 624 -4 176 ) ( 208 -4 176 ) oak2 [ 1.00000 0.00000 0.00000 -1584.00000 ] [ 0.00000 0.00000 1.00000 720.00000 ] 0 0.25000 -0.25000
( 208 12 195 ) ( -624 12 176 ) ( -208 12 176 ) oak2 [ -1.00000 0.00000 0.00000 48.00000 ] [ 0.00000 0.00000 1.00000 712.44578 ] 0 0.25000 -0.25000
}
// Brush 20
// poly:p[23]
{
( -256 152 -64 ) ( -256 24 -64 ) ( -128 152 -64 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 -1.00000 0.00000 -304.00000 ] 0 0.50000 -0.50000
( -256 152 0 ) ( -256 280 0 ) ( -128 152 0 ) Floor_slate01 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 304.00000 ] 0 0.50000 -0.50000
( -256 96 -56 ) ( -256 96 72 ) ( -128 96 -56 ) stonewall [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -256 208 -56 ) ( -256 208 72 ) ( -384 208 -56 ) stonewall [ -1.00000 0.00000 0.00000 -512.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -252 152 -56 ) ( -252 152 72 ) ( -252 24 -56 ) stonewall [ 0.00000 -1.00000 0.00000 304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
( -192 152 -56 ) ( -192 152 72 ) ( -192 280 -56 ) stonewall [ 0.00000 1.00000 0.00000 -304.00000 ] [ 0.00000 0.00000 1.00000 -112.00000 ] 0 0.50000 -0.50000
}
}
// Entity 1
// portal:b[1]
{
"classname" "portal"
"ambient_light" "0"
// Brush 0
// portal:b[1] -> poly:p[1]
{
( -248 112 72 ) ( -376 112 72 ) ( -248 112 200 ) NULL [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 0.00000 1.00000 144.00000 ] 0 0.50000 -0.50000
( -248 128 136 ) ( -248 256 136 ) ( -120 128 136 ) NULL [ 1.00000 0.00000 0.00000 496.00000 ] [ 0.00000 1.00000 0.00000 256.00000 ] 0 0.50000 -0.50000
( -64 192 64 ) ( -64 192 192 ) ( -192 192 64 ) NULL [ -1.00000 0.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -192 64 64 ) ( -192 64 192 ) ( -192 -64 64 ) NULL [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
( -64 64 8 ) ( -64 -64 8 ) ( 64 64 8 ) NULL [ 1.00000 0.00000 0.00000 128.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.50000 -0.50000
( -184 64 64 ) ( -184 -64 64 ) ( -184 64 192 ) NULL [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 128.00000 ] 0 0.50000 -0.50000
}
}
// Entity 2
// detail:b[20]
{
"classname" "detail"
// Brush 0
// detail:b[20] -> poly:p[1]
{
( -128 92 204 ) ( -128 92 332 ) ( 0 92 204 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -128 212 204 ) ( -128 212 76 ) ( 0 212 204 ) oak2 [ -1.00000 0.00000 0.00000 -512.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -128 32 152 ) ( -128 160 152 ) ( 0 32 152 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 1.00000 0.00000 128.00000 ] 0 0.25000 -0.25000
( -128 32 132 ) ( -128 160 132 ) ( -256 32 132 ) oak2 [ 1.00000 0.00000 0.00000 512.00000 ] [ 0.00000 -1.00000 0.00000 -128.00000 ] 0 0.25000 -0.25000
( -200 32 204 ) ( -200 160 204 ) ( -200 32 332 ) oak2 [ 0.00000 -1.00000 0.00000 128.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
( -176 32 204 ) ( -176 160 204 ) ( -176 32 76 ) oak2 [ 0.00000 1.00000 0.00000 -128.00000 ] [ 0.00000 0.00000 1.00000 816.00000 ] 0 0.25000 -0.25000
}
}
// Entity 3
// light_omni:e[24]
{
"classname" "light_omni"
"origin" "-184 152 100"
"color" "245 245 255"
"alarm_type" "0"
"falloff1" "100"
"falloff2" "1000"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Some files were not shown because too many files have changed in this diff Show More