blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50 values | src_encoding stringclasses 23 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 29 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c06ee54a90ec2f9f5a7bfde3b8e53af07568df19 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH43/EX43.14/43_14.sce | 2ed55b849653c26fed65ff28b93fff735111e9cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,315 | sce | 43_14.sce | //Problem 43.14:The circuit diagram of an air-cored transformer winding is shown in Figure 43.17. The coefficient of coupling between primary and secondary windings is 0.70. Determine for the circuit (a) the mutual inductance M, (b) the primary current I1 and (c) the secondary terminal p.d.
//initializing the variables:
re = 40; // in Volts
thetae1 = 0; // in degrees
R1 = 5; // in ohm
L1 = 0.001; // in Henry
L2 = 0.006; // in Henry
R2 = 40; // in ohm
rzl = 200; // in ohm
thetazl = -60; // in degrees
k = 0.70
f = 20000; // in Hz
//calculation:
w = 2*%pi*f
//voltage
E1 = re*cos(thetae1*%pi/180) + %i*re*sin(thetae1*%pi/180)
//impedance
ZL = rzl*cos(thetazl*%pi/180) + %i*rzl*sin(thetazl*%pi/180)
//mutual inductance, M
M = k*(L1*L2)^0.5
//Applying Kirchhoff’s voltage law to the primary circuit gives
//(R1 + %i*w*L1)*I1 - %i*w*M*I2 = E1
//Applying Kirchhoff’s voltage law to the secondary circuit gives
//-1*%i*w*M*I1 + ( R2 + ZL + %i*w*L2)*I2 = 0
//solving these two
I1 = E1/((R1 +%i*w*L1) - (%i*w*M)^2/(R2 + ZL + %i*w*L2))
I2 = 250/(350 + %i*180);
//secondary terminal p.d.
pd = I2*ZL
printf("\n\n Result \n\n")
printf("\n mutual induction M is %.2E H",M)
printf("\n primary current I1 is %.2f +(%.2f)i A",real(I1), imag(I1))
printf("\n secondary terminal p.d. is %.2f +(%.2f)i V",real(pd), imag(pd)) |
514a66147b8b46ee0a8b9aa6fa3fc6dff9b4cbaf | 449d555969bfd7befe906877abab098c6e63a0e8 | /3554/CH15/EX15.10/Ex15_10.sce | e395a330ebd19c2afa4a96b28dfad601518873ed | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,128 | sce | Ex15_10.sce | // Exa 15.10
clc;
clear all;
// Given data
// Second order inverting Butterworth low pass filter
// Refering Table 15.1 and 15.3 in page no 517 and 538 respectively
Af=6;// DC gain
Fc=1.5;// KHz
Q=10;
// Solution
disp(" According to Table 15.1, the inverting configurations would normally be used to give an inverting low pass output. However, to obtain a gain of 6, an inverting uncommitted opamp has to br used, hence the non-inverting filter configuration must be used.");
// From table 15.4 given on page no 538
R2=316/Q;
R3=100/(3.16*Q-1);
// R1 treated as open circuit
printf(' \n The R1 is open while R2 and R3 are %.1f ,k Ohms %.1f k Ohms respectively \n',R2,R3);
// From equations 15.54 given on page no 538 we get R4 and R5
R4=(5.03)*10^7/(Fc*10^3);//Ohms
R5=R4;
printf(' \n The calculated value of R4=R5=%.2f k Ohms \n',R4/1000);
disp(" use R4=R5=33 k Ohms");
disp(" Let R6=1.8 K ohms");
R6=1.8; // K ohms
R7=R6*Af;
R8=(1/R6 + 1/R7)^-1;
printf(' The values of R6 and R7 are %.1f k Ohms, %.3f K ohms respectively \n',R6,R7);
printf(' The value of R8 = %.3f k Ohms \n ',R8);
|
6d5ebe91cd201a7656c3a1e4497ef24695b3ddfa | bbe484d1b8ad18373632b07b2ee24bcdc3b24254 | /shkoli/LISH 08 - Varna/day5/race/7_6.tst | ab4cc21449c168ca66aab0704b477acf14861b09 | [] | no_license | matemura/Competitions | 9d97a94c1e01a16b79c94fd02d0e98d3047e7548 | 7a61c65dd8666c793f30f325e65f5a91078b4b0a | refs/heads/master | 2021-05-28T05:27:20.542371 | 2013-11-26T06:16:30 | 2013-11-26T06:16:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 119 | tst | 7_6.tst | 9 9
.........
.........
.#.......
#....#...
.#.......
.........
...#.....
.........
.....#...
1 2
RRRDDRRLRL |
ffb98b0304a4c46923932b4000347ae3a2e86b5c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH13/EX13.8w/13_8w.sce | 8196169c7398b773ddf7858c8fcfc083f4508f93 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 604 | sce | 13_8w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 13.8w
//calculation of the angle that the plank makes with the vertical in equilibrium
//given data
l=1//length(in m) of the planck
h=0.5//height(in m) of the water level in the tank
s=0.5//specific gravity of the planck
//calculation
//A = OC/2 = l/(2*cosd(theta)
// mg = 2*l*rho*g
//buoyant force Fb=(2*l*rho*g)/cosd(theta)
//m*g*(OB)*sind(theta) = F(OA)*sind(theta)
theta=acosd(sqrt(1/2))
printf('the angle that the plank makes with the vertical in equilibrium is %d degree',theta)
|
8d170ff824c2b0cd26410c8c948cf231ac72636c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH18/EX18.3/18_3.sce | ee62b5fbdf8fcc1fb3a62ffe7b5ccbec8c5950ff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 410 | sce | 18_3.sce | clc;
clear;
c1=1.5e-6;
w=2*%pi*50;
L1=1/(3*c1*(w^2));
c2=.9*c1;
L2=1/(3*c2*(w^2));
c3=.95*c1;
L3=1/(3*c3*(w^2));
L1=round(L1*100)/100;
L2=round(L2*10)/10;
L3=round(L3*100)/100;
mprintf("the inductance for 100 percent line capacitance=%f henries \n",L1);
mprintf("for 90percent line capacitance,the inductance=%f henries\n",L2);
mprintf("for 95percent line capacitane inductance=%f henries",L3);
|
afc71857f73e115a1b276dd134887ce7d050eee1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/CH8/EX8.4/8_4.sce | b1d2c94778c332964625103b7e5f30dc8a43fb93 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 924 | sce | 8_4.sce | pathname=get_absolute_file_path('8_4.sce')
filename=pathname+filesep()+'8_4data.sci'
exec(filename)
clear
Xc=(a2^2)/(b+ 2*a2);//x bar
Xs=-(Xc+((3*a2^2)/(b*(1+ 6*a2/b))));
A= 2*a2*t + b*t;
Ixx=2*a2*t*(b/2)^2 +(t*b^3)/12;
Iyy=b*t*Xc^2 +(2*t/3)*((a2-Xc)^3 +Xc^3);
I0=Ixx+Iyy+ A*Xs^2;
J=(2*a2*t^3)/3 +(b*t^3)/3;
tau= 0.1244*t*a2^3 *b^2;
Px=((%pi^2)*E*Ixx/(L^2));//PCR(xx)
Py=((%pi^2)*E*Iyy/(L^2));//PCR(yy)
Pth=(A/I0)*(G*J +((%pi^2)*E*tau)/(L^2));//PCR(θ)
a=(1-(A*Xs^2)/I0),b=-(Px +Pth),c=Px*Pth;
P1=(-b +(b*b -4*a*c)^0.5)/(2*a);
P2=(-b -(b*b -4*a*c)^0.5)/(2*a);
Load=[Px;Py;Pth;P1;P2];
minimum=Load(1);
for i=2:5
if(Load(i)<Load(i-1)) then
minimum=Load(i);
a1=i;
end
end
if(a1>3) then
printf("\nflexural-torsional buckling will happen.\nand buckling load is: %f N",minimum);
else
printf("\nuncoupled buckling will happen\nand buckling Load is %f N",minimum);
end
|
7acf312cc08fba8c6da1919985881603df81e95a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1475/CH9/EX9.6/Example_9_6.sce | 8886d38ee336afd5d926d053c9ddf55ba3b4d8f0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 307 | sce | Example_9_6.sce | // Example 9.6 Measurements on average x and range
clc;
clear;
S_D=3.017;
x=99.6;
R=7.0;
n=5;
SE=S_D/sqrt(n);
UCL=x+3*(S_D/sqrt(n));
LCL=x-3*(S_D/sqrt(n));
disp(LCL,"Lower Control Limit =",UCL,"Upper Control Limit",SE,"Standard Error = ",x,"Mean Average =",R,"Mean Range =",n," Sample Size =");
|
b4b849bd436440679734627d9e1e92a2723eb3ed | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/ID4.prev.tst | b936bf04fa321271e11b05f250319bb8538655eb | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 54 | tst | ID4.prev.tst | getIndivisible(x^4 - y^4 - z^2, 2) -> x^4 - y^4 - z^2
|
1c680b6d127cf759854561869b02b0e5c4f7b38f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3841/CH4/EX4.9/Ex4_9.sce | 1a30ac894353fbc95587ebf0b1e7800e4328bb7a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 128 | sce | Ex4_9.sce | clear
//find the work neccasry to raise a weight
//given
//
w=150.
d=8.
Work=w*d
printf("\n \n work necesary %.2f ft-lb",Work)
|
5b0b9909e2dff7d89fdc3aa3070fbd680aa594c0 | be07c1e346737e6e38bb958d9a66f52f6da2180a | /Regression/DISHWASHER/DISHWASHER_W.tst | c0c05eb94b7c8528ea0d7e65fb537696246c4e59 | [] | no_license | dpreisser/Training | 1bc8840d646306d861f4c7610a28bb23667f06e5 | 97eb58c7963e4725d6a2ad9e8200ca9367c84061 | refs/heads/master | 2021-01-10T13:03:12.508795 | 2016-04-11T12:49:06 | 2016-04-11T12:49:06 | 54,963,561 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,205 | tst | DISHWASHER_W.tst | -- VectorCAST 6.4d (02/29/16)
-- Test Case Script
--
-- Environment : DISHWASHER_W
-- Unit(s) Under Test: dishwasher_fsm
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STANDARD_SPACING_R2
TEST.SCRIPT_FEATURE:OVERLOADED_CONST_SUPPORT
TEST.SCRIPT_FEATURE:UNDERSCORE_NULLPTR
TEST.SCRIPT_FEATURE:FULL_PARAMETER_TYPES
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
--
-- Subprogram: <<INIT>>
-- Test Case: PowerOn
TEST.SUBPROGRAM:<<INIT>>
TEST.NEW
TEST.NAME:PowerOn
TEST.AUTOMATIC_INITIALIZATION
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.VALUE:dishwasher_fsm.<<GLOBAL>>.powerOn:1
TEST.END
-- Subprogram: processDryCycle
-- Test Case: processDryCycle.001
TEST.UNIT:dishwasher_fsm
TEST.SUBPROGRAM:processDryCycle
TEST.NEW
TEST.NAME:processDryCycle.001
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.VALUE:dishwasher_fsm.processDryCycle.event:EVENT_STOP
TEST.EXPECTED:dishwasher_fsm.processDryCycle.return:STS_ALL_GOOD
TEST.END
-- Subprogram: processIdleState
-- Test Case: processIdleState.001
TEST.UNIT:dishwasher_fsm
TEST.SUBPROGRAM:processIdleState
TEST.NEW
TEST.NAME:processIdleState.001
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.VALUE:dishwasher_fsm.processIdleState.event:EVENT_START_WASH
TEST.EXPECTED:dishwasher_fsm.processIdleState.return:STS_ALL_GOOD
TEST.END
-- Subprogram: processRinseCycle
-- Test Case: processRinseCycle.001
TEST.UNIT:dishwasher_fsm
TEST.SUBPROGRAM:processRinseCycle
TEST.NEW
TEST.NAME:processRinseCycle.001
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.VALUE:dishwasher_fsm.processRinseCycle.event:EVENT_START_DRY
TEST.EXPECTED:dishwasher_fsm.processRinseCycle.return:STS_ALL_GOOD
TEST.END
-- Test Case: processRinseCycle.002
TEST.UNIT:dishwasher_fsm
TEST.SUBPROGRAM:processRinseCycle
TEST.NEW
TEST.NAME:processRinseCycle.002
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.STUB:dishwasher_fsm.checkHeatingElement
TEST.VALUE:dishwasher_fsm.checkHeatingElement.return:STS_NO_HEAT
TEST.VALUE:dishwasher_fsm.processRinseCycle.event:EVENT_START_DRY
TEST.EXPECTED:dishwasher_fsm.processRinseCycle.return:STS_NO_HEAT
TEST.END
-- Subprogram: processWashCycle
-- Test Case: processWashCycle.001
TEST.UNIT:dishwasher_fsm
TEST.SUBPROGRAM:processWashCycle
TEST.NEW
TEST.NAME:processWashCycle.001
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.VALUE:dishwasher_fsm.processWashCycle.event:EVENT_START_RINSE
TEST.EXPECTED:dishwasher_fsm.processWashCycle.return:STS_ALL_GOOD
TEST.END
-- COMPOUND TESTS
TEST.SUBPROGRAM:<<COMPOUND>>
TEST.NEW
TEST.NAME:<<COMPOUND>>.001
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.SLOT: "1", "dishwasher_fsm", "processIdleState", "1", "processIdleState.001"
TEST.SLOT: "2", "dishwasher_fsm", "processWashCycle", "1", "processWashCycle.001"
TEST.SLOT: "3", "dishwasher_fsm", "processRinseCycle", "1", "processRinseCycle.001"
TEST.SLOT: "4", "dishwasher_fsm", "processDryCycle", "1", "processDryCycle.001"
TEST.END
--
|
e8d2722b16a5298ceb66dfca3c6a5b7d63ff4e9b | daf9a7434ea9996fc591a79030570f48e396cdc5 | /Exponential/ExponentialPDF.sce | 57964a453ac569b4ee26dd022da5e13727dd0527 | [] | no_license | isabelle-le/MonteCarloSimulation | c8dbfc2f5485f6dc6291654032ecad6c01cce401 | f96e0a11569b3e4dade452d99e9c1bbd6c3efb81 | refs/heads/master | 2020-04-05T22:40:20.686962 | 2018-11-12T19:18:50 | 2018-11-12T19:18:50 | 157,263,752 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 587 | sce | ExponentialPDF.sce | //generate the exponential CDF
//LE THU HUONG _ ADEO1
clc
N = 20000;
THETA = 0.8;
x0 = 0;
xmax= 10;
delx = 0.1;
x=[ x0 : delx : xmax ];
for i = 1 :length(x)
c = 0;
for K = 1 : N
u = rand();
alpha = 0;
alpha = log(abs(1-u))/(-THETA);
exponential = alpha;
if( exponential>=x(i) & exponential < x(i) + delx ) then
c = c + 1;
end
end
probability(i)=c/N;
end
plot(x, probability ,'*dk' )
title (" SIMULATION OF EXPONENTIAL: PDF");
xlabel(" number of x ");
ylabel(" P(x)");
|
66b567e2b17f85b547bfff50e3fdb65a57f77703 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1859/CH2/EX2.22/exa_2_22.sce | 8f0a0a36c97673bd5005d1527e0137eb58f77e23 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 735 | sce | exa_2_22.sce | // Exa 2.22
clc;
clear;
close;
// Given data
C=1;// in miu F
C=C*10^-6;// in F
P=1000;// in ohm
Q=2000;// in ohm
r=200;// in ohm
S=2000;// in ohm
del_C_by_C= 1;
del_P_by_P= 0.4;
del_Q_by_Q= 1;
del_r_by_r= 0.5;
del_S_by_S= 0.5;
Lx= C*P/S*(r*(Q+S)+Q*S);// in Henry
disp(Lx,"Unknown inductance in Henry")
// Let
u=Q+S;// in ohm
Error_u= Q/u*del_Q_by_Q + S/u*del_S_by_S;// in %
// Let v= r*(Q+S) = r*u
v= r*(Q+S);
Error_v= del_r_by_r + Error_u;// in %
// Let
x=Q*S;
Error_x= del_Q_by_Q + del_S_by_S;// in %
// Let y= r*(Q+S)+Q*S = v+x
y=v+x;
Error_y= v/y*Error_v + x/y*Error_x;// in %
del_Lx_by_Lx= del_C_by_C + del_P_by_P + del_S_by_S + Error_y;// in %
disp(del_Lx_by_Lx,"Percentage error in inductance")
|
7c7cb6dc253d99ba6cb5150e4450416531210276 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1100/CH12/EX12.1/12_1.sce | bbdc5190aa6a7d5b2bfd47ad2818e7dc1c73676d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 349 | sce | 12_1.sce | clc
//initialisation of variables
P= 15.0 //psia
T= 55 //F
P1= 0.2141 //psia
ma= 29 //lb
mb= 18 //lb
P2= 0.2141 //psia
P3= 0.3631 //psia
//CALCULATIONS
dp= P-P1
r= (dp*ma)/(P1*mb)
r1= r/(r+1)
r2= 1/(r+1)
r4= r2/r1
P= P2/P3
//RESULTS
printf ('relative humidity= %.2f ',P)
printf (' \n specific humidity= %.4f lb vapour/lb air',r4)
|
3f3e1627b364bc224cf373fde2b0b2461c097889 | ff1325c4f8bc7aae332f9dfbae7b15e8243c7d51 | /usolve.sce | 04b0a729e11262cc26855a35ec38f91fb4c061bb | [] | no_license | jperret21/calcul_numerique | c17d274a1d9a4ec42c510fbfb7a29cbe5e985572 | 1379d876b42849664bde200b5a1fde0221715b06 | refs/heads/main | 2023-01-14T16:22:24.308899 | 2020-11-26T13:36:57 | 2020-11-26T13:36:57 | 314,207,969 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 949 | sce | usolve.sce | //-----------------------------Matrice Us -----------------------------------//
function [res]=usolve(U,b)
n=size(b,1)
x=zeros(n,1)
x(n)=b(n)/U(n,n)
for i= n-1:-1:1
x(i)=(b(i)-U(i,(i+1):n) * x((i+1):n))/U(i,i)
end
res=x
endfunction
function [res]=lsolve(L,b)
n=size(L,1)
x=zeros(n,1)
x(1)=b(1)/L(n,n)
for i= 2:1:n
x(i)=( b(i)-L(i,1:(i-1))*x(1:(i-1)))/L(i,i)
end
res=x
endfunction
//---------------------------------TEST---------------------------------------//
s=100;
n=10;
rand("seed",s)
xex=rand(n,1)
Ad=rand(n,n)
A=triu(Ad)
b=A*xex
x_u=usolve(A,b)
disp("x exacte:", xex)
disp("x uslove:", x_u)
//-----Validation des calculs---------------//
frelres=norm(x_u-xex)/norm(xex) //erreur avant
brelres= norm(b-A*x_u)/norm(b) // erreur arriere
capa=cond(A)
born=capa*brelres
disp("brelres",brelres)
disp("frelres",frelres)
disp("born",born)
disp("capa",capa)
|
1407e7c9dfd2f4139b88e9b2f2aea7b5be2f392c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2096/CH2/EX2.30/ex_2_30.sce | 43da9a03dacda2b00f7114ab1d7b0355a6013888 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 235 | sce | ex_2_30.sce | //Example 2.30 //self capacitance
clc;
clear;
close;
//given data :
C1=100; // in pico-farad
f1=600;// in kilo-Hz
f2=2; // in M-Hz
Cd=(f1*1000)^2*C1/((f2*10^6)^2-(f1*1000)^2)
disp(Cd,"the self capacitance,Cd(pico-farad) = ")
|
8ab16dd90e08ed5fecee82a4a51468f4b3969564 | 05db16b4f57b0182fa452e2c11554c3de6fff271 | /branches/vac4.52_sac_cuda/dev/vac4.52mkg_24_06_2010/scilab/get_head.sci | 88614b1aa583ae0a1a433ef8e0d7f62de6bb0c01 | [] | no_license | SpungMan/smaug-all | 09b4fcf6fcec2fc7be1fa85c5c7f2d68c79e504b | 01df12e98c734529ff984662badc26eaa3a9138b | refs/heads/master | 2021-11-29T14:09:47.094457 | 2018-06-08T09:48:05 | 2018-06-08T09:48:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,943 | sci | get_head.sci |
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
// Read header of a VAC data file
fileerror = 0;
// ! L.4: mtlb(asciifile) can be replaced by asciifile() or asciifile whether asciifile is an M-file or not.
// ! L.4: mtlb(ifile) can be replaced by ifile() or ifile whether ifile is an M-file or not.
// !! L.4: Unknown function asciifile not converted, original calling sequence used.
if asciifile(mtlb(ifile)) then
// ! L.5: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
%v0_1 = mgetl(mtlb(fid),1); if meof()~=0 then %v0_1 = -1;end; headline = trim(%v0_1);
if ~type(headline)==10 then fileerror = 1; return;end;
// ! L.7: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
%v1_1 = mgetl(mtlb(fid),1); if meof()~=0 then %v1_1 = -1;end; // !! L.7: Matlab function sscanf not yet converted, original calling sequence used.
tmp = mtlb_t(sscanf(%v1_1,"%d %f %d %d %d",5));
it = mtlb_e(tmp,1); time = mtlb_e(tmp,2); ndim = mtlb_e(tmp,3); neqpar = mtlb_e(tmp,4); nw = mtlb_e(tmp,5); clear("tmp");
gencoord = mtlb_logic(ndim,"<",0); ndim = abs(mtlb_double(ndim));
// ! L.10: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
%v2_1 = mgetl(mtlb(fid),1); if meof()~=0 then %v2_1 = -1;end; // !! L.10: Matlab function sscanf not yet converted, original calling sequence used.
nx = mtlb_t(sscanf(%v2_1,"%d",ndim));
// ! L.11: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
%v3_1 = mgetl(mtlb(fid),1); if meof()~=0 then %v3_1 = -1;end; // !! L.11: Matlab function sscanf not yet converted, original calling sequence used.
eqpar = mtlb_t(sscanf(%v3_1,"%f",neqpar));
// ! L.12: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
%v4_1 = mgetl(mtlb(fid),1); if meof()~=0 then %v4_1 = -1;end; Variables = trim(%v4_1);
else
// ! L.14: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.14: No simple equivalent, so mtlb_fread() is called.
[tmp,ntmp] = mtlb_fread(mtlb(fid),4);
if ntmp<4 then fileerror = 1; return;end;
// ! L.16: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.16: No simple equivalent, so mtlb_fread() is called.
headline = trim(ascii(mtlb_fread(mtlb(fid),79)'));
// ! L.17: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.17: No simple equivalent, so mtlb_fread() is called.
mtlb_fread(mtlb(fid),4);
// ! L.19: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.19: No simple equivalent, so mtlb_fread() is called.
mtlb_fread(mtlb(fid),4);
// ! L.20: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.20: No simple equivalent, so mtlb_fread() is called.
it = mtlb_fread(mtlb(fid),1,"int32"); // ! L.20: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.20: No simple equivalent, so mtlb_fread() is called.
time = mtlb_fread(mtlb(fid),1,"float64");
// ! L.21: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.21: No simple equivalent, so mtlb_fread() is called.
ndim = mtlb_fread(mtlb(fid),1,"int32");
gencoord = ndim<0; ndim = abs(ndim);
// ! L.23: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.23: No simple equivalent, so mtlb_fread() is called.
neqpar = mtlb_fread(mtlb(fid),1,"int32"); // ! L.23: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.23: No simple equivalent, so mtlb_fread() is called.
nw = mtlb_fread(mtlb(fid),1,"int32");
// ! L.24: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.24: No simple equivalent, so mtlb_fread() is called.
mtlb_fread(mtlb(fid),4);
// ! L.26: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.26: No simple equivalent, so mtlb_fread() is called.
mtlb_fread(mtlb(fid),4);
// ! L.27: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.27: No simple equivalent, so mtlb_fread() is called.
nx = mtlb_fread(mtlb(fid),ndim,"int32");
// ! L.28: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.28: No simple equivalent, so mtlb_fread() is called.
mtlb_fread(mtlb(fid),4);
// ! L.30: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.30: No simple equivalent, so mtlb_fread() is called.
mtlb_fread(mtlb(fid),4);
// ! L.31: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.31: No simple equivalent, so mtlb_fread() is called.
eqpar = mtlb_fread(mtlb(fid),neqpar,"float64");
// ! L.32: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.32: No simple equivalent, so mtlb_fread() is called.
mtlb_fread(mtlb(fid),4);
// ! L.34: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.34: No simple equivalent, so mtlb_fread() is called.
mtlb_fread(mtlb(fid),4);
// ! L.35: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.35: No simple equivalent, so mtlb_fread() is called.
Variables = trim(ascii(mtlb_fread(mtlb(fid),79)'));
// ! L.36: mtlb(fid) can be replaced by fid() or fid whether fid is an M-file or not.
// L.36: No simple equivalent, so mtlb_fread() is called.
mtlb_fread(mtlb(fid),4);
end;
// Extract physics from headline if it is defined
i = max(size(mtlb_double(headline)));
while i>1 & mtlb_logic(mtlb_e(headline,i),"~=","_") i = i-1;end;
if mtlb_logic(mtlb_e(headline,i),"==","_") then
physics = mtlb_e(headline,i+1:max(size(mtlb_double(headline))));
headline = mtlb_e(headline,1:i-1);
end;
// Extraxt number of vector components NDIR from last character of physics
// and extract phys without the number of dimesions and components
if ~isempty(physics) then
ndir = evstr(mtlb_e(physics,max(size(mtlb_double(physics)))));
phys = mtlb_e(physics,1:max(size(mtlb_double(physics)))-2);
end;
// Extract info from names of Variables
[variables,ntmp] = str2arr(Variables);
xnames = variables(mtlb_imp(1,ndim),:);
wnames = variables(mtlb_imp(mtlb_a(ndim,1),mtlb_a(ndim,nw)),:);
// It can optionally contain the names of the equation parameters
if mtlb_logic(ntmp,"==",mtlb_a(mtlb_a(ndim,nw),neqpar)) then
eqparnames = variables(mtlb_imp(mtlb_a(mtlb_a(ndim,nw),1),ntmp),:);
for ieqpar = mtlb_imp(1,mtlb_double(neqpar))
mtlb_eval(eqparnames(ieqpar,:)+"= eqpar(ieqpar);");
end;
end;
clear("ntmp");
nxs = mtlb_prod(mtlb_double(nx));
if mtlb_logic(ndim,"==",1) then
nx1 = nx;
nx2 = 1;
nx3 = 1;
end;
if mtlb_logic(ndim,"==",2) then
nx1 = mtlb_e(nx,1);
nx2 = mtlb_e(nx,2);
nx3 = 1;
end;
if mtlb_logic(ndim,"==",3) then
nx1 = mtlb_e(nx,1);
nx2 = mtlb_e(nx,2);
nx3 = mtlb_e(nx,3);
end;
|
c73e04866602bee554e41ad56b16d0b0d66392f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH14/EX14.21/example14_21.sce | cd6f243a958bf0d665660d1983eb42a9f09a4e7e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 812 | sce | example14_21.sce | clc
// Given that
lambda = 3.5e-7 // wavelength of light in meter
i = 1 // intensity in W/m^2
p = 0.5 // percent of incident photon produce electron
a = 1 // surface area of potassium in cm^2
w = 2.1 // work function of potassium in eV
h = 6.62e-34 // Planck constant in J-sec
c = 3e8 // speed of light in m/sec
e = 1.6e-19 // charge on an electron in C
m = 9.1e-31 // mass of an electron in kg
// Sample Problem 21 on page no. 14.28
printf("\n # PROBLEM 21 # \n")
printf("Standard formula used \n ")
printf(" 1/2*m*v^2 = (h * c)/ lambda\n")
E = (((h * c) / lambda) * (1 / e) - w) * e
E_ = (p * a * 1e-4) / 100 // in W/cm^2
n = E_ / E
printf("\n Maximum kinetic energy is %e J.\n Number of electrons emitted per sec from 1cm^2 area is %e .",E,n)
|
de758ff89a7787d424bc70814cc40a685e6b9af7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH8/EX8.23/example_8_23.sce | 17abb700ed18a0e15e324762468da2d8288d4fc5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 480 | sce | example_8_23.sce | s=%s
P=s^6+2*s^5+9*s^4+16*s^3+24*s^2+32*s+16
routh=routh_t(P)
disp(routh)
r=coeff(P)
n=length(r)
c=0;
for i=1:n
if (routh(i,1)<0)
c=c+1;
end
end
if(c>=1)
printf("there are %d roots on RHS",c)
else printf("there are no roots in RHS")
end
disp("s is")
R=(sqrt(roots(routh(3,:))))
disp(R)
k=0
for(i=1:3)
if(real (R(i,1))==0)
k=k+1
end
end
printf("thus %d roots on imaginary axis and there are %d roots in LHS",2*(k-1),6-c-2*(k-1)) |
b1173a5ef01e70b756b5ea51ac31292545d8aa62 | 449d555969bfd7befe906877abab098c6e63a0e8 | /914/CH14/EX14.7/ex14_7.sce | e207072f5617eb1a678859177c436633ad16f699 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 467 | sce | ex14_7.sce | clc;
warning("off");
printf("\n\n example14.7 - pg736");
// given
beta0=-6.301289;
beta1=1853.374;
clf;
xtitle("Temperature variation of the viscosity of water","(1/T)*10^3,K^-1","viscosity,cP");
x=[2.2,0.2,3.8]';
y=[(beta0+beta1*x)];
plot2d(x,y);
// at T=420;
T=420; //[K]
x=1/T;
y=beta0+beta1*x;
mu=exp(y);
printf("\n\n mu=%fcP",mu);
printf("\n\n The error is seen to be 18 percent.AT midrange 320(K), the error is approximately 4 percent");
|
35fafb90cdee04420180bdf4f31652b498467445 | ebfed86dee276110294a4e93fa80377908bbd317 | /macros/facePredict.sci | 08ca65cadbffcb2c126b8fcb4a805e39a0f841af | [] | no_license | gursimarsingh/FOSSEE-Image-Processing-Toolbox | a9d46b698c98566fec867eb2ce3cfeb427058d5c | 165f6d7d1f20262a1637a923c6aad6e663ad1538 | refs/heads/master | 2021-08-16T19:18:59.591175 | 2017-11-08T17:55:04 | 2017-11-08T17:55:04 | 96,531,802 | 0 | 0 | null | 2017-07-07T11:21:10 | 2017-07-07T11:21:10 | null | UTF-8 | Scilab | false | false | 2,273 | sci | facePredict.sci | // Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author:Gursimar Singh
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
// Training Dataset credits : AT&T Laboratories Cambridge
function [predictedLabel,confidence]=facePredict(classifier,image)
//Predict face label in an image.
//
//Calling Sequence
//[predictedLabel]=facePredict(classifier,image)
//[predictedLabel,confidence]=facePredict(classifier,image)
//
//Parameters
//predictedLabel:The predicted label of the input image.It is the name of the folder in which the input existed when classifier was trained.
//confidence:More value of the confidence more is the deviation of the input image with the original image.Confidence =0 means exact match.
//classifier:A face classifier structure obtained from trainFaceRecognizer with following fields<itemizedlist><listitem>ClassifierType - Algorithm with which the recognizer was trained.</listitem><listitem>ClassifierLocation - Location of the xml file generated after training.</listitem><listitem>DescriptionCount - Number of images used in training the recognizer.</listitem></itemizedlist>
//image:Input image
//
//Description
//The function predicts the label of the input image from the image set by which the cascade classifier was trained.
//
//Examples
//imgSet=imageSet("images/trainset_face","recursive");
//tr=trainFaceRecognizer(imgSet,"LBPH");
//image=imread("images/s1.pgm");
//[p(1),c(1)]=facePredict(tr,image);
//image=imread("images/s2.pgm");
//[p(2),c(2)]=facePredict(tr,image);
//image=imread("images/s3.pgm");
//[p(3),c(3)]=facePredict(tr,image);
//
//Authors
//Gursimar Singh
//
//See also
//imageSet
//trainFaceRecognizer
image_list = mattolist(image)
if ~isstruct(classifier)
error(msprintf("Structure of classifier required\n"));
end
classifier_list = list(classifier.ClassifierType,classifier.ClassifierLocation,classifier.Description);
[predictedLabel,confidence] = raw_facePredict(classifier_list, image_list);
endfunction
|
b57c46597077aa92197b81362f8e6ea17472f806 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1052/CH27/EX27.4/274.sce | db6722a9aaab105261c29712bf780d2ee3b192b5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 249 | sce | 274.sce | clc;
//Example 27.4
//page no 414
printf("Example 27.4 page no. 414\n\n");
m=1947//slope of curve b/w t/V vs V,s/ft^6
K_c=2*m
c=217//intercept on graph
q_r=c//reciprocal of q
printf("\n coeff. K_c=%f s/ft^6\n coeff. q_r=%f s/ft^3",K_c,q_r)
|
a7642449f9461fc5aef07b315d1228adf19149d1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3871/CH14/EX14.5/Ex14_5.sce | 706237a9d9af33cd0a78b983f38853b4d4bdcde8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 936 | sce | Ex14_5.sce | //=====================================================================================
//Chapter 14 example 5
clc;
clear all;
//variable declaration
t = 5*10^6; //time reaading in ms
t2 = 500; //time reaading in ms
x = 0.005; //accuracy in percent of reading
t3 = 500*10^3; //time reaading in ms
//calculations
e = ((x/100)*t)+1; //maximum likely timing error in ms
e1 = ((x/100)*t2)+1; //maximum timing error in ms
a = t2*10^6; //maximum accuracy mininum error will be obtained when the time is read on the us read
e3 = ((x/100)*t3)+1; //maximum timing error in ms
//result
mprintf("maximum likely timing error when time reading is 05000000 ms = %3.2f ms",e);
mprintf("\nmaximum timing error when time reading is 00000500 ms = %3.2f ms",e1);
mprintf("\nmaximum error when time reading is 00500000 = %3.2f ms",e3);
|
e44874b0c1cc214d23610907b161d300c31ae698 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/Chi-RW-C/results/Chi-RW-C.vowel-10-1tra/result1.tst | c159f523d8f8aeb64198848302235529c7a72b08 | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 967 | tst | result1.tst | @relation vowel
@attribute TT integer[0,1]
@attribute SpeakerNumber integer[0,14]
@attribute Sex integer[0,1]
@attribute F0 real[-5.211,-0.941]
@attribute F1 real[-1.274,5.074]
@attribute F2 real[-2.487,1.431]
@attribute F3 real[-1.409,2.377]
@attribute F4 real[-2.127,1.831]
@attribute F5 real[-0.836,2.327]
@attribute F6 real[-1.537,1.403]
@attribute F7 real[-1.293,2.039]
@attribute F8 real[-1.613,1.309]
@attribute F9 real[-1.68,1.396]
@attribute Class{0,1,2,3,4,5,6,7,8,9,10}
@inputs TT,SpeakerNumber,Sex,F0,F1,F2,F3,F4,F5,F6,F7,F8,F9
@outputs Class
@data
6 9
0 0
4 4
4 4
8 9
1 1
4 3
9 9
7 7
0 0
2 1
3 3
7 7
5 3
6 6
9 9
3 3
9 9
4 4
7 7
8 8
9 9
8 8
0 0
1 0
6 6
5 3
6 6
7 7
4 4
0 0
1 1
9 9
2 1
5 3
9 9
6 6
8 9
2 2
1 1
4 4
0 0
3 4
5 4
2 2
5 4
3 4
2 3
7 7
3 3
10 8
10 9
0 0
2 3
9 9
4 7
5 3
1 1
10 8
3 0
1 9
7 7
10 ?
1 9
5 3
0 0
3 3
3 3
6 6
8 9
2 3
5 4
1 1
3 3
0 0
7 8
8 8
9 9
10 3
4 7
5 3
6 7
9 9
1 1
2 2
4 6
6 7
8 9
0 0
2 2
8 9
7 7
10 9
7 7
10 9
8 9
10 9
6 7
10 6
|
2a002c5fee23cb3ed410eadd99bea84eefbcde4a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2141/CH5/EX5.5/Ex5_5.sce | eb2697568285a92d3077bba4d7c5a9f0e1a1ede4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 589 | sce | Ex5_5.sce |
clc
//initialisation of variables
v1=200 //ft/sec
v2=600//ft/sec
Q=-30000//Btu/hr
m=10000//lbf/hr
p1=300//lbf/in62
p2=15//lbf/in^2
T1=700//F
T2=778//F
g=32.17//lbm-ft/lbf-sec^2
Q1=100//percent
hi=1368.3//Btu/lbm
g1=16//feet
g2=10//feet
he=1150.8//Btu/lbm
w1=208100//Bt/hr
w2=2545//Btu/hp-hr
a=7.2//lbm
w3=208.1
//CALCULATIONS
V=(v1*v1)/(2*g*T)//Btu/lbm
Zi=(g1*g)/(g*T)//Btu/lbm
V1=(v2)^2/(2*g*T)//Btu/lbm
Ze=g2/T2//Btu/lbm
We1=w1/w2*10//hp
q=Q/m//Btu/lbm
We2=(w3*m)/w2//hp
//RESULTS
printf('The work per pound mass of fluid flowing is found is=% f hp',We2)
|
d137fb4fe6e7ca95e2e6bdf78dbb2f403a92dd98 | 449d555969bfd7befe906877abab098c6e63a0e8 | /866/CH9/EX9.1/9_1.sce | ca02d8d2c290c3abe98024ce8b46437e083ffa33 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 435 | sce | 9_1.sce | clc
//initialisation of variables
w= 10 //KN/m
L= 6 //m
sigmaxallowable= 155 //N/mm^2
Modulusofuniversalbeam= 307600 //mm^3
Satisfactorybeam= 254*102*28
//CALCULATIONS
Mmaxnormal= (w*L^2)/8
Zemin= (Mmaxnormal)/sigmaxallowable
Totalload= w+((28*9.81)/10^3)
Mmaxload= (Totalload*L^2)/8
Allowablestress= (Mmaxload*10^3*10^3)/Modulusofuniversalbeam
//RESULTS
printf ('Satisafactorybeam=% 2f (254*102*28)',Satisfactorybeam)
|
63247d3c0a6d12274562f5bad0b2c1fe20d6723a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH2/EX2.2/Ex2_2.sce | b5f9a5997b722199c1fdd66eba6226231a01441e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,255 | sce | Ex2_2.sce | // Problem no 2.2,Page no.31
clc;clear;
close;
//Rectangle-1
b_1=2 //cm //width of Rectangle-1
d_1=12 //cm //breadth of Rectangle-1
a_1=24 //cm**2 //Area of Rectangle-1
y_1=6 //cm //Distance of centroid-1
//Rectangle-2
b_2=6 //cm //width of Rectangle-2
d_2=2 //cm //breadth of Rectangle-2
a_2=12 //cm**2 //Area of rectangle-2
y_2=1 //cm //Distance of centroid-2
//Rectangle-3
b_3=2 //cm //width of Rectangle-3
d_3=12 //cm //breadth of Rectangle-3
a_3=24 //cm**2 //Area of rectangle-3
y_3=6 //cm //Distance of centroid-3
//Calculation
Y_bar=((a_1*y_1+a_2*y_2+a_3*y_3)*(a_1+a_2+a_3)**-1) //cm //centre of gravity of section
Y_1=6 //cm //Distance of centroid of rectangle 1 to base
Y_2=1 //cm //Distance of centroid of rectangle 2 to base
Y_3=6 //cm //Distance of centroid of rectangle 3 to base
I_x_x_1=b_1*d_1**3*12**-1+a_1*Y_1**2 //moment of inertia of rectangle 1 about centroidal x-x axis of the section
I_x_x_2=b_2*d_2**3*12**-1+a_2*Y_2**2 //moment of inertia of rectangle 2 about centroidal x-x axis of the section
I_x_x_3=b_3*d_3**3*12**-1+a_3*Y_3**2 //moment of inertia of rectangle 3 about centroidal x-x axis of the section
I_x_x=I_x_x_1+I_x_x_2+I_x_x_3 //cm**4
//Result
printf("Moment of Inertia of the section is %.2f cm^4",I_x_x)
|
62c9a1f6e7d3bd449b5adced8f6268b5c61f21cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /273/CH22/EX22.2/ex22_2.sce | 1e0a16955640d9e70a622e70b8118f44d32a5a5b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 276 | sce | ex22_2.sce | clc;clear;
//Example 22.2
//calculation of transition temperature
//given values
T=8;//temp in K
Hc=1*10^5;//critical magnetic field at T in A/m
Hc0=2*10^5;//magnetic field at 0 K in A/m
//calculation
Tc=T/(sqrt(1-Hc/Hc0));
disp(Tc,'transition temp in K is');
|
a0cb4a738269eece84281a349cb4912db3968a8c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2912/CH6/EX6.2/Ex6_2.sce | 24cf08f523ec37665e6351f9b7f782ac4d5239b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 727 | sce | Ex6_2.sce | //chapter 6
//example 6.2
//Calculate the temperature
//page 146
clear;
clc;
//given
k=1.38E-23; // in J/K (Boltzmann's constant)
e=1.6E-19; // in C (charge of electron)
P_E=1; // in percentage (probability that a state with an energy 0.5 eV above Fermi energy will be occupied)
E=0.5; // in eV (energy above Fermi level)
//calculate
P_E=1/100; // changing percentage into ratio
E=E*e; // changing unit from eV to J
// P_E=1/(1+exp((E-E_F)/k*T))
// Rearranging this equation, we get
// T=(E-E_F)/k*log((1/P_E)-1)
// Since E-E_F has been denoted by E therefore
T=E/(k*log((1/P_E)-1));
printf('\nThe temperature is \tT=%.f K',T);
// Note: There is slight variation in the answer due to logarithm function
|
e5c367c14b0954cfd31a937b9bdaf95f83424ab5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH18/EX18.22/Ex18_22.sce | c2ba9393296b294529a41e8d15630d0fcd1a16ac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 321 | sce | Ex18_22.sce | //Initilization of variables
theta=30 //degrees
vo=20 //ft/s
r=4 //ft
vf=0 //ft/s
g=32.2 //ft/s^2
//Calculations
wo=vo/r //rad/s
wf=vf/r //rad/s
//Applying impulse momentum theorem
//Solving simultaneous equations
t=-((3/(2*g))*(r^2)*(wf-wo))/(r*sind(theta))//s
//Result
clc
printf('The time t is %f s',t)
|
c5afdfaba565565d1033fcc9a993da4605ea89cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3422/CH4/EX4.6/Ex4_6.sce | 321f4f6885749537fdda27be723e06f2ca198219 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 151 | sce | Ex4_6.sce | //Example 4.6, Page no 92
clc
disp("Part ii")
new_sin_delta=sind(45)/.95
delta=asind(new_sin_delta)
printf("\n The value of delta is %f degree ",delta) |
373539dc0f1fe8bdc1a10831db0d29e37b84d745 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH11/EX11.10/Example11_10.sce | 8fe66d17c5fa6de0e2683a8e8caca92352493a2e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 481 | sce | Example11_10.sce | ////Exa 11.10
clc;
clear;
close;
//Given data :
r=1;//cm
R=2.5;//cm
d=2*r;//cm
D=2*R;//cm
epsilon_r1=5;//relative permitivity
epsilon_r2=4;//relative permitivity
epsilon_r3=3;//relative permitivity
gmax=40;//KV/cm
//epsilon_r1*d=epsilon_r2*d1=epsilon_r3*d2
d1=(epsilon_r1/epsilon_r2)*d;//cm
d2=(epsilon_r1/epsilon_r3)*d;//cm
Vpeak=gmax/2*(d*log(d1/d)+d1*log(d2/d1)+d2*log(D/d2));//kV
Vrms=Vpeak/sqrt(2);//kV
disp(Vrms,"Working voltage(rms) for the cable (kV)");
|
9ca481515a8318089d3e36716d2892a5cf0db8c8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1730/CH2/EX2.21/Exa2_21.sce | 4ddfb425fea15fe9863c20b5ad9b47065a9263a9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 237 | sce | Exa2_21.sce | //Exa2.21
clc;
clear;
close;
//given data
R=95.5;//in ohm
l=1;//in meter
d=0.08;//in mm
d=d*10^-3;//in meter
a=(%pi*d^2)/4;
//Formula R=rho*l/a
rho=R*a/l;
disp("Resistance of the wire material is : "+string(rho)+" ohm-meter") |
109296a37e552fb6cf84e1abfe0736ad8a8b6585 | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH8/EX8.43/ch8_43.sci | 690ce68077229dffc7a1484657e2cb826c2cdb1f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 649 | sci | ch8_43.sci | //to clculate pf angle, torque angle,equivalent capicitor and inductor value
clc;
of1=250;
scr=.52; //short ckt ratio
of2=of1/scr;
r=25*10^6;
V=13000;
Ia=r/(sqrt(3)*V);
Isc=Ia*of1/of2;
Xs=V/(sqrt(3)*Isc);
Xb=V/(sqrt(3)*Ia);
Xsadj=Xs/Xb;
f=50;
If=200;
Ef=V*If/of1;
Vt=V/sqrt(3);
Ia=(Vt-Ef/sqrt(3))/Xs;
dl=0;disp(dl,'torque angle(deg)');
pf=90;disp(pf,'pf angle(deg)');
L=(V/(sqrt(3)*Ia))/(2*%pi*f);
disp(L,'inductor value(H)');
If=300;
Eff=V*If/of1;
Vt=Ef/sqrt(3);
Ia=(Eff/sqrt(3)-Vt)/Xs;
dl=0;disp(dl,'torque angle(deg)');
pf=90;disp(pf,'pf angle(deg)');
c=1/((V/(Ia))*(2*%pi*f));
disp(c,'capacitor value(F)');
|
8698a75838986eba4d4dd974ef78bd8a6e0ffbe7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3682/CH4/EX4.8/Ex4_8.sce | ca36731f05fc3a1bd87196ba8ea4e70625eb92ab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 581 | sce | Ex4_8.sce | // Exa 4.8
clc;
clear;
// Given data
// Referring Fig. (4.28) -Non- inverting terminal integrator
// Solution
printf(' The voltage at the (+) input terminal of the op-amp due to potential divider is,\n');
printf(' V(+) = 1/ s*C * Vi(s)\n');
printf(' ----------\n');
printf(' R+ 1/ s*C \n\n');
printf(' The output voltage Vo(s) fot the non-inverting amplifier is - \n');
printf(' Vo(s) = (1 + 1/(s*C*R))*V(+) = Vi(s) / (s*R*C)).\n\n');
printf(' Hence in time domain, we get, vo = (1/(R*C)) ∫ vi dt .\n');
printf(' Hence proved. \n');
|
9ccd5c032243eb0924d7642afe32e0b8ddeb2e18 | e4381b32d21150427f93b058541bb3343752bb0f | /sablona_A3/vystrizky_A3/obrazek2.sce | 62587eee04fa5dc0908ea0bdeac27cd71683d4f7 | [] | no_license | pirati-cz/plisty | c095da00bfa89792f8eb676fd5b756fc1454659d | 815dbc58f7a47f1b2740ffa068a2ff5f909ecba8 | refs/heads/master | 2020-12-24T19:04:07.572707 | 2016-05-16T20:52:51 | 2016-05-16T20:52:51 | 58,966,482 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,022 | sce | obrazek2.sce | <SCRIBUSELEMUTF8 W="398.267716535433" H="226.771688143313" previewData="iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAzxJREFUaIHt1r9z2mYcx/H3IwlJIIXKiCgcBQzPkYMTmTMw20s3L/0TOucPyNw/Jou3LvbsoXOmdEibo76rr3bimF/BiCeDnZ57LlgQgZ2eXhvP8+jLR4Lvo0c0oPEJPh3DMd+gMpQtsACwwZYgC1C451yxFaAgQdpg35r0wOtAxwHnHrLF4oDTgY4H3p2Lt2E7hFADbQPZYtFACyHchu2lLhQg2tCuQnVN2WKrQrUNbQFi5SL32T8L+2BVHngSZA5yiRWdIwc5CTJWH6yqBCUJch39o4EmQZaglHTtuepQr0AlqXoVqNShnlS9pZhgtqH9NU+wBKU2tE0wk8y2Eh/8EMI85ONek4d8CKEP/jqzraQK1Ra0FvWPBloLWg9hW79TfU7/rLMPlnrBHBwcHMRdq4FmgTWFKcDj/f3a+d7e2wHMrlYc4/+Kf1rpjXwq0CN7+pzT2n6v9m7v+TuA3d3d3bXciPqpq3h9c+QZPHvNv8cAjuAIoAvd66GXP8IPr64/f5m/qQu/vIQ3b+DVCzjqIjiKnW+pG9nZ2dmJs04HPYBgBKMP8AGuXqhZyJ7ASQRRnDqHh4eHy+RLVBOaDWjMm29AownNTWZaShnKHejEeR+YYHagU4byJrLF4oIbQrjKucgDL4TQBXcd2WIxwJAgAwi+tlYAgQRpgJFEtthqUKtB7Vupe8smnlySv/QtechLkJv8L7vgSpDLnN/m+rK7FKGYQLaVFKEYdzf8Ty1oPaT9vgnNFrTmzQvbsl7cHHii1KMCOL8JcTL951z0MBigPVUqOIPBX0Jc3JwT/panAB4pRUEp/haCgVh8cgmCAN0wmF5eYhgZHCfH5TTi48dzCltb6LqBkTEYj0b0+31s22Y2m6HpOuPRCCOTIYoictksURQxGAzJmCZ+0eePt7/T718s/H5HKYpKcSYEF9dZDVvXKUcRF5pOT7sa1O94MtPpFKUgCJ4wHA4xTZPJ5RDbshCaBuJqTc5xmEwmKKWwbRulFDm/yPuzUyzLQgGu6zIej7Esk8l4DCh0fXGCMdADCjPFYzXjWNcRT2375z+FOL8j+4P2vVLf3XeGVCqVSqVSqVQqlUqlUv9znwF6Fr7EOxeTIgAAAABJRU5ErkJggg==" YP="785.196850393695" XP="25.511811023622" COUNT="2" Version="1.4.6">
<FONT NAME="Arial Regular"/>
<FONT NAME="Fira Sans Bold"/>
<FONT NAME="Fira Sans Book"/>
<FONT NAME="Fira Sans ExtraBold"/>
<FONT NAME="Fira Sans Light"/>
<FONT NAME="Fira Sans Medium"/>
<FONT NAME="Fira Sans Regular"/>
<FONT NAME="Lato Light"/>
<FONT NAME="PermianSerifTypeface Italic"/>
<FONT NAME="PermianSerifTypeface Regular"/>
<FONT NAME="PermianSlabSerifTypeface Bold"/>
<COLOR Spot="0" Register="0" NAME="Black" CMYK="#000000ff"/>
<COLOR Spot="0" Register="0" NAME="Cervena" CMYK="#2effe814"/>
<COLOR Spot="0" Register="0" NAME="Cervena2" CMYK="#00e2c600"/>
<COLOR Spot="0" Register="0" NAME="Fialova" CMYK="#78871700"/>
<COLOR Spot="0" Register="0" NAME="Fialova2" CMYK="#44c9201b"/>
<COLOR Spot="0" Register="0" NAME="Modra" CMYK="#ff14000d"/>
<COLOR Spot="0" Register="0" NAME="Oranzova" CMYK="#007fff00"/>
<COLOR Spot="0" Register="0" NAME="Ruzova" CMYK="#02662601"/>
<COLOR Spot="0" Register="0" NAME="White" CMYK="#00000000"/>
<COLOR Spot="0" Register="0" NAME="Zelana" CMYK="#5700d900"/>
<COLOR Spot="0" Register="0" NAME="Zelena2" CMYK="#b300d500"/>
<COLOR Spot="0" Register="0" NAME="Zluta" CMYK="#1400c700"/>
<MultiLine Name="Teckovana">
<SubLine LineEnd="0" Dash="3" Width="1.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tenka">
<SubLine LineEnd="0" Dash="1" Width="0.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tenka teckovana">
<SubLine LineEnd="0" Dash="3" Width="0.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tlusta">
<SubLine LineEnd="0" Dash="1" Width="1.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Velmi tlusta">
<SubLine LineEnd="0" Dash="1" Width="2.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 398.268 0 398.268 0 398.268 0 398.268 0 398.268 226.772 398.268 226.772 398.268 226.772 398.268 226.772 0 226.772 0 226.772 0 226.772 0 226.772 0 0 0 0 " ANNAME="obrazek2" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="None" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="398.267716535433" XPOS="25.511811023622" relativePaths="1" EXTRA="0" PFILE="obrazek2/26201520516_57af8539bd_k.jpg" TopLine="0" Pagenumber="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="226.771653543314" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="" TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="785.196850393695" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="10" LOCALSCX="0.283741387792969" TXTSCALE="100" LOCK="0" LOCALSCY="0.283741387792969" PRFILE="sRGB IEC61966-2.1" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="0" ImageRes="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="2" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="1" COCOOR="0 0 0 0 398.268 0 398.268 0 398.268 0 398.268 0 398.268 226.772 398.268 226.772 398.268 226.772 398.268 226.772 0 226.772 0 226.772 0 226.772 0 226.772 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="0" endArrowIndex="0" COLGAP="0" SCALETYPE="0" EMBEDDED="0" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="0" NUMPO="16"/>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 398.268 0 398.268 0 398.268 0 398.268 0 398.268 22.6772 398.268 22.6772 398.268 22.6772 398.268 22.6772 0 22.6772 0 22.6772 0 22.6772 0 22.6772 0 0 0 0 " ANNAME="" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="Black" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="398.267716535433" XPOS="25.511811023622" relativePaths="1" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="22.6772" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="0" TransBlendS="0" IFONT="Fira Sans Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="" TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="989.291338537008" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="5.669291339" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="4" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="White" TXTSTRSH="100" PWIDTH="1" COCOOR="0 0 0 0 398.268 0 398.268 0 398.268 0 398.268 0 398.268 22.6772 398.268 22.6772 398.268 22.6772 398.268 22.6772 0 22.6772 0 22.6772 0 22.6772 0 22.6772 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="0" SHADE="100" NUMGROUP="0" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="0" NUMPO="16">
<ITEXT PSTYLE="" CH="Popisek k obrázku, který je trochu delší"/>
<PARA PARENT="Obrazek-popisek"/>
</ITEM>
</SCRIBUSELEMUTF8>
|
89b08ed9680d1a3885f05c498611f5beb30eb65e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH2/EX2.4/ex2_4.sce | 8aaf86e54d242f1da17822e1ff282f7e29520c7a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 363 | sce | ex2_4.sce | // Exa 2.4
clc;
clear;
close;
format('v',5)
// Given data
R1 = 5;// in ohm
R2 = 10;// in ohm
R3 = 7;// in ohm
V = 20;// in V
Vth = R2*V/(R1+R2);// in V
Rth = R3 + ((R2*R1)/(R2+R1));// in ohm
R_L = Rth;// in ohm
disp(R_L,"The value of load resistance in ohm is");
Pmax = (Vth^2)/(4*R_L);// in W
disp(Pmax,"The magnitude of maximum power in W is");
|
63345d9c089f1361324051f50b8e0e3f65f6564b | 68bc9ed8216a93c9b0bc0a6dbde62a7bb8328383 | /param/testcase5.tst | 3fc2ca5f38bb18835008e6dcbfb5f36d68eb817c | [] | no_license | michaelhuang14/AutonomousAgentsGreenhouse | 5e305e522c95dfaaebd7e4f148de87572d4185ce | 83e4aad142c9ca72ba4ababf58c25bed53428f0c | refs/heads/main | 2022-12-20T01:59:27.773408 | 2020-10-08T03:02:55 | 2020-10-08T03:02:55 | 300,742,055 | 1 | 0 | null | 2020-10-08T02:41:49 | 2020-10-02T21:40:36 | Python | UTF-8 | Scilab | false | false | 145 | tst | testcase5.tst | # Simple trace file
BASELINE = baseline4.bsl
WHENEVER 1-08:00:00
ENSURE not fan UNTIL 1-09:00:00 #fan should not be on during both behaviors
|
affa76ccde79dd8208b1985d799fe29ba5a08bfb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2267/CH7/EX7.6/ex7_6.sce | f11c6f0ae68d1bbb7edef2544c4a87ea47df14fc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 167 | sce | ex7_6.sce | //Part A Chapter 7 Example 6
clc;
clear;
close;
p=2;//MPa
T=500+273.15;//K
dh_by_ds=T;//for constant pressure
disp("Slope of an isobar is "+string(dh_by_ds));
|
e9a8ff7a19b5a4049d2386445d9df38e8a0a5a48 | 449d555969bfd7befe906877abab098c6e63a0e8 | /50/CH6/EX6.18/ex_6_18.sce | 5a8165e090df78e9aa9d9d4127063bea880813fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 181 | sce | ex_6_18.sce | // example 6.18,
// caption: use of 4th order runge kutta method,
// u'=f(t,u)
// u'=-2tu^2
deff('[z]=f(t,u)','z=-2*t*u^2');
RK4(1,0,.4,.2,f) // calling the function, |
e2d622bdad8af070bee79d4343003f5bd342cd9c | e86653ab56eded6714574f9f8f34013272027113 | /181/CH5/EX5.1/example5_1.sce | c3f8c5726ff287d705f3689ffe977807e95c779f | [] | no_license | FOSSEE/Xcos_TBC_Uploads | 3637554f9dca20d0c5ec2c5d00d30942edafe09a | 37e81552cb6d9066617ba91b13c91098e5ab6758 | refs/heads/master | 2023-03-30T10:45:38.033053 | 2021-03-15T05:40:35 | 2021-03-17T09:45:20 | 346,244,418 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,509 | sce | example5_1.sce | // Calculate BJT parameters using beta gain
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 5-1 in page 235
clear; clc; close;
// Part 1
// Given Data
beta_bjt=100; // Beta Gain of BJT
Vcc=10; // DC voltage across Collector in V
Rb=100000; // Base Resistance of BJT in ohm
Rc=2000; // Collector Resistance of BJT in ohm
Vbe=0.7; // Base-Emitter voltage of BJT
// Calculations
Ib=(Vcc-Vbe)/((beta_bjt*Rc)+Rc+Rb);
Ic=beta_bjt*Ib;
Vce=Vcc-(Ib+Ic)*Rc;
printf("Part 1 \n");
printf("(a)The value of Base Current in the BJT circuit is %0.3e A \n",Ib);
printf("(b)The value of Collector Current in the BJT circuit is %0.3e A \n",Ic);
printf("(c)The value of Collector-Emitter voltage in the circuit is %0.3f V \n",Vce);
// Part 2
// Given Data
Vce2=7; // Collector-Emitter voltage of BJT
Vcc=10; // DC voltage across Collector in V
Rc=2000; // Collector Resistance of BJT in ohm
Vbe=0.7; // Base-Emitter voltage of BJT
Rc2=2000; // Collector Resistance of BJT in ohm
// Calculations
constant=(Vcc-Vce2)/Rc;
Ib2=constant/101;
Ic2=100*Ib2;
Rb2=(Vcc-Vbe-(Rc2*constant))/Ib2;
printf("\nPart 2 \n");
printf("(a)The value of the Base Resistance of the Circuit is %0.3e ohm \n ",Rb2);
// Results
// Circuit 1: Value of Base Current of circuit = 0.031 mA
// Circuit 1: Value of Collector Current of circuit = 3.1 mA
// Circuit 1: Value of Collector-Emitter voltage of BJT circuit = 3.779 V
// Circuit 2: Value of BAse Resistance required = 424.24 K-ohm
|
2c6df3cc0989ad698c6784fc57591dd5b282b4c2 | 9d545f988a80789144df937ce4a90017c378cb92 | /Lab09/pcm.sci | 6283025f1e6a7fc001b4dd8dd79c745dacae588a | [] | no_license | tshrjn/EE304P | 215dc669daaf372242afe2c1f580a36df26e51ce | ac1c045262dd0b419354d2d22861c734508b7b8e | refs/heads/master | 2021-01-10T03:02:18.270276 | 2015-12-01T02:42:16 | 2015-12-01T02:42:16 | 46,113,211 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 118 | sci | pcm.sci | n = 8
delta = 0.586
y = sin(x)
function x = Quantiser([a],delta)
end function
function [y] = PCM()
end function
|
dc8509fa172c78198bb1d6f0667e2b206796e4ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /3811/CH11/EX11.4/Ex11_4.sce | 1cdf125066e3a64e7ac46a6aa2af162e5154ceff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 744 | sce | Ex11_4.sce | //Book Name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
//chapter 11
//example 11.4
//edition 1
//publishing place:Thomson Learning
clc;
clear;
Ra=1;//armature resistance in ohm
Kphi=3;//field constant in V sec
Vt=500;//terminal voltage in volt
Vf=600;//increased motor voltage in volt
Td=20;//constant torque of thmotor in Nm
J=6;//total moment of inertia of the drive in Nm
omega0=(Vt/Kphi)-((Ra*Td)/Kphi^(2));//initial speed in rad/sec
omegaf=(Vf/Kphi)-((Ra*Td)/Kphi^(2));//final speed in rad/sec
tau=(J*Ra)/Kphi^(2);
t=-(tau*log((0.05*omegaf)/(omegaf-omega0)));//obtained from the equation of omega=omega(f)(1-e^-t/tau)+omega(0)e^-t/tau
mprintf("The time required to change the motor speed is %f sec",t)
|
e5c0342e94e2cf1a4914d15e98b35e8415937310 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1883/CH5/EX5.7.5/Example5_19.sce | 97b605dde67a96ec3157e6787d9c211dbe56c6e9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 722 | sce | Example5_19.sce | //Chapter-5,Example5_7_5,pg 5-28
//By Heisenberg's uncertainty principle
//(delta_E*delta_t)>=h/(4*%pi)
//therefore (h*c*delta_wavelength*delta_t/wavelength^2) >= h/(4*%pi)
wavelength=4*10^-7 //wavelength of spectral line
c=3*10^8 //velocity of light in air
delta_wavelength=8*10^-15 //width of spectral line
delta_t=wavelength^2/(4*%pi*c*delta_wavelength)
printf("\nThe minimum time required by the electrons in upper energy state Delta_t = \n")
disp(delta_t)
printf("sec\n")
|
69182aaf6b46265883418eade3bc967724e4b6ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH1/EX1.5/Ch01Ex5.sce | bcb0bd176a206ffe6364cc2d34fdbcdbd0dff722 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 653 | sce | Ch01Ex5.sce | // Scilab Code Ex 1.5 : Page-18 (2006)
clc; clear;5
M_Na = 23; // Atomic weight of Na, gram per mole
M_Cl = 35.5; // Atomic weight of Cl, gram per mole
d = 2.18e+06; // Density of Nacl salt, g per metre cube
n = 4; // No. of atoms per unit cell for an fcc lattice of NaCl crystal
N = 6.023D+23; // Avogadro's No.
// Volume of the unit cell is given by
// a^3 = M*n/(N*d)
// Solving for a
a = (n*(M_Na + M_Cl)/(d*N))^(1/3); // Lattice constant of unit cell of NaCl
printf("\nLattice constant for the NaCl crystal = %4.2f angstorm", a/1e-010);
// Result
// Lattice constant for the NaCl crystal = 5.63 angsotrm
|
4206e9ef0f90c89ea048230aefd4e4214e12c819 | 676ffceabdfe022b6381807def2ea401302430ac | /library/Demos/Python/MultiRegions/Tests/Helmholtz2D.tst | 7f441e3ca92ee043049cce3fc2c45544356a8ffa | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 971 | tst | Helmholtz2D.tst | <?xml version="1.0" encoding="utf-8" ?>
<test>
<description>Helmholtz solver in 2D domain</description>
<executable python="true"> Helmholtz2D.py </executable>
<parameters>Helmholtz2D_P7.xml</parameters>
<processes>4</processes>
<files>
<file description="Session File">../../../MultiRegions/Tests/Helmholtz2D_P7.xml</file>
</files>
<metrics>
<metric type="Linf" id="1">
<value tolerance="1e-7" variable="nek">6.120209e-05</value>
<value tolerance="1e-7" variable="nekpy">6.120209e-05</value>
</metric>
<metric type="L2" id="2">
<value tolerance="1e-7" variable="nek">4.302677e-05</value>
</metric>
<metric type="regex" id="3">
<regex>^Reduction test.*: (\d+)</regex>
<matches>
<match>
<field id="0">4</field>
</match>
</matches>
</metric>
</metrics>
</test>
|
ba7343b015aeaec9acc7f376db320be85a7db028 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1172/CH1/EX1.8/Example1_8.sce | 10e759a2bfd681a0088dbe4636854125d739b58c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 346 | sce | Example1_8.sce | clc
//Given that
mu=1.60// refractive index of plane glass prism
lambda=0.0000589// wavelength of incident light in cm
N=15// order of fringe
//Sample Problem 8 Page No. 49
printf("\n # Problem 8 # \n")
printf(" \n Standard formula used \n del_x = D/2d *(mu-1)*t \n")
t=N*lambda/(mu-1)
printf("\n Thickness of sheet is %e cm.", t)
|
749143067898888cfbd86586b6e63aefa111963f | 3bc6ef556fe17cd555622ad3c1a1be107134c1f5 | /CDT/lab2/AUTOMATIC_FULL_COVERAGE.TST | b3d5475a378ed69a8ca1b6ddf7e4868510ded914 | [] | no_license | AntonPashkowskiy/Labs | 0782e7f4a79eb7a2e46c0342025d137f0488d1ef | 88566f97e344cfef7cb5b45b2e6e47ebe9cfa11b | refs/heads/master | 2021-05-15T01:28:19.520067 | 2017-03-09T21:35:09 | 2017-03-09T21:35:09 | 41,997,532 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 30 | tst | AUTOMATIC_FULL_COVERAGE.TST | 0011
0000
1110
0000
0101
0010
|
0d2fb2f81e74776347ddc017920eff958c609db3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH6/EX6.2/Ex6_2.sce | a411a72653f8ceffdfd7ee127db0e0a037c776c5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 417 | sce | Ex6_2.sce | //Example 6_2
clc();
clear;
//To estimate the average stopping force the tree exerts on the car
m=1200 //units in Kg
vf=0 //units in meters/sec
v0=20 //units in meters/sec
v=0.5*(vf+v0) //units in meters/sec
s=1.5 //units in meters
t=s/v //units in sec
f=((m*vf)-(m*v0))/t //Units in Newtons
printf("The average stopping force the tree exerts on the car is F=")
disp(f)
printf("Newtons")
|
c608142ac437b47b0d6c2a2ef4f634cf11bddc3a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1739/CH8/EX8.17/Exa8_17.sce | 88b22e3916441c43d3b9ad62fbe2db22360daf10 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 422 | sce | Exa8_17.sce | //Exa 8.17
clc;
clear;
close;
//Given data :
M=20;//unitless
lambda=1.5;//in um
lambda=lambda*10^-6;//in meter
R=0.6;//in A/W
h=6.63*10^-34;//Planks constant
q=1.6*10^-19;//in coulamb
c=3*10^8;//in m/s
photons=10^10;//incident photons/sec
Im=M*R*photons*h*c/lambda;//in Ampere
disp(Im*10^9,"Output Photo current in nA : ");
ETA=R*h*c/(q*lambda);//unitless
disp(round(ETA*100),"Quantum Efficiency in % : "); |
60f40f24268cb3ef7ebabf5e0ca257d55f96afa5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1247/CH5/EX5.41/example5_41.sce | d922efb9a40df973d22480f212148090ec0f220d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 909 | sce | example5_41.sce | clear;
clc;
// Stoichiometry
// Chapter 5
// Energy Balances
// Example 5.41
// Page 294
printf("Example 5.41, Page 294 \n \n");
// solution
// 1 kmol of EB vapors entering the reactor at 811.15 K
// (from 811.15 to T1)intgr{-36.72+671.12*10^-3*T-422.02*10^-6*T^2+101.15*10^-9*T^3}dT = (from T1 to 978.15)intgr{487.38+1.19*10^-3*T+198.16*10^-6*T^2-68.21*10^-9*T^3}dT
// we get
T1 = 929.72 // K
To = 298.15
H1 = 493405 // kJ
EBr = .35
Styrenep = EBr*.9
Benzeneb = EBr*.03
Ethyleneb = Benzeneb
Cb = EBr*.01
Toulened = EBr*.06
Hr1 = 147.36-29.92 // kJ/mol EB
Hr2 = 82.93+52.5-29.92
Hr3 = -29.92
Hr4 = 50.17-74.52-147.36 // kJ/mol styrene
dHr = 1000*(Hr1*(Styrenep+Toulened)+Hr2*Benzeneb+Hr3*Cb+Hr4*Toulened)
H2 = H1-dHr
// H2 = (from To t0 T2)intgr{Comp2dT
// we get
T2 = 798.79 // K
printf(" Adiabatic reaction T at the outlet of the reactor is "+string(T2)+" K.")
|
95171f449e65cafbbdc62b80b2a9a3a1c7bfa94a | 449d555969bfd7befe906877abab098c6e63a0e8 | /659/CH8/EX8.4/exm8_4.sce | d9b2e9f7234c2bec1c9baaf4dda78ac6dead2eb2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 492 | sce | exm8_4.sce | // Exampple 8.4
//Write a program to store the string "United Kingdom" in the array country-
//and display the string under various format specifications.
country='United Kingdom';
printf("\n");
printf("*123456789012345*\n");
printf("--------\n");
printf("%15s\n",country);
printf("%5s\n",country);
printf("%15.6s\n",country);
printf("%-15.6s\n",country);
printf("%15.0s\n",country);
printf("%.3s\n",country);
printf("%s\n",country);
printf("--------\n");
|
52c5fb7b56ce62de01f0f2209fc445a9bd144bf5 | 1541040db785a4cf2546707cc80ad1ded591e4fb | /Livros/Communication Systems, 4Th Edition - Simon Haykin/analises/equa2.20-analiseDaFreqMedia.sce | 993cc9fca6d09619b95240ac235ddc4a5d5fdd5d | [] | no_license | rogersguedes/siscom1 | 6341507ed907e811c44ebbe490777aa7cb7285b2 | 65ca145d9624cb8bbef0fc90e0053d02d222679d | refs/heads/master | 2021-05-27T10:00:51.283553 | 2014-03-29T23:10:39 | 2014-03-29T23:10:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 618 | sce | equa2.20-analiseDaFreqMedia.sce | xdel(winsid())
clear
clc
freqDeAmostragem = 10000;
TdeAmostragem = 1/freqDeAmostragem;
freqS1 = 20;
Ts1 = 1/freqS1;
t=[0:TdeAmostragem:Ts1];//um periodo do sinal 01
freqS2=((2*freqS1)/Ts1).*t;//freqS2 variando de uma forma que seu valor médio é igual à freqS1 dentro do periodo correspondente a freqS1;
s1=cos(2*%pi*freqS1.*t);
s2=cos(2*%pi*freqS2.*t);
subplot(1,2,1)
plot(t,freqS1)
plot(t,freqS2,'red')//até aqui tudo bem...
xgrid
subplot(1,2,2)
plot(t,s1)
plot(t,s2,'red')//mas ao plotar o sinal com frequência variável, ele executou 2 períodos do sinal com frequência constante...
xgrid
|
c481c967b9d57f18ad2d948006cbe84f843d15bd | a674f7b984545698214f8164107cc4e15916c573 | /Fonctions/Normalisation.sci | b8d83e4a3b7e2929015b6ff10f8641a7537257ab | [] | no_license | enzo-billis/Projet_CESI_Scilab_Missions | 6bb843b68b64660f8ed235cde4213dd4d3343375 | 07434c89170e237aff6a78ad4d59034b6e47f382 | refs/heads/master | 2021-03-16T10:27:15.255047 | 2018-03-05T08:02:40 | 2018-03-05T08:02:40 | 120,597,704 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 329 | sci | Normalisation.sci | function TransformedImage=Normalisation(image)
[hauteur, largeur]=size(image)
TransformedImage=zeros(hauteur, largeur)
minimum=min(image)
maximum=max(image)
for x=1:hauteur
for y=1:largeur
TransformedImage(x,y)=((image(x,y)-minimum)*255)/(maximum-minimum)
end
end
endfunction
|
1608eafeb2893784fde1960f6e44f34e32ab9b8b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2417/CH5/EX5.8/Ex5_8.sce | 7f13d6769c6efb49ab20eff2c1b2e642571b8a73 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,421 | sce | Ex5_8.sce | //scilab 5.4.1
clear;
clc;
printf("\t\t\tProblem Number 5.8\n\n\n");
// Chapter 5 : Properties Of Liquids And Gases
// Problem 5.8 (page no. 193)
// Solution
//Using Table 2 ans a quality of 85%(x=0.85),we have
//at 1.0 MPa
x=0.85;
sf=2.1387; //saturated liquid entropy //Unit:kJ/kg*K
sfg=4.4487; //Evap. Entropy //Unit:kJ/kg*K
hf=762.81; //saturated liquid enthalpy //Unit:kJ/kg
hfg=2015.3; //Evap. Enthalpy //Unit:kJ/kg
uf=761.68; //saturated liquid internal energy //Unit:kJ/kg
ufg=1822.0; //Unit:kJ/kg //Evap. internal energy
vf=1.1273; //Saturated liquid specific volume //Unit:m^3/kg
vfg=(194.44-1.1273); //evap. specific volume //Unit:m^3/kg
sx=sf+(x*sfg); //entropy //kJ/kg*K
printf("Entropy of a wet steam mixture at 1.0 MPa is %f kJ/kg*K\n",sx);
hx=hf+(x*hfg); //enthalpy //kJ/kg*K
printf("Enthalpy of a wet steam mixture at 1.0 MPa is %f kJ/kg\n",hx);
ux=uf+(x*ufg); //internal energy //kJ/kg*K
printf("Internal energy of a wet steam mixture at 1.0 MPa is %f kJ/kg\n",ux);
vx=(vf+(x*vfg))*(0.001); //specific volume //m^3/kg
printf("Specific Volume of a wet steam mixture at 1.0 MPa is %f m^3/kg\n",vx);
//As a check,
px=10^6; //psia //pressure
ux=hx-((px*vx)/10^3); //1 ft^2=144 in^2 //internal energy
printf("As a check,\n")
printf("Internal energy of a wet steam mixture at 120 psia is %f kJ/kg\n",ux);
printf("Which agrees with the values obtained above");
|
5c85fc4ba285fc6eb551e23de2191163c379c99e | 449d555969bfd7befe906877abab098c6e63a0e8 | /494/CH5/EX5.4/5_4.sce | 0ec507fd81eb7eaab5cd4009731b2a275530ee64 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,305 | sce | 5_4.sce | //All the qunatities are expressed in SI units
alpha_L0 = -1*%pi/180; //zero lift angle of attack
alpha1 = 7*%pi/180; //reference angle of attack
C_l1 = 0.9; //wing lift coefficient at alpha1
alpha2 = 4*%pi/180;
AR = 7.61; //aspect ratio of the wing
taper = 0.45; //taper ratio of the wing
delta = 0.01; //delta as calculated from fig. 5.20
tow = delta;
//the lift curve slope of the wing/airfoil can be calculated as
a0 = C_l1/(alpha1-alpha_L0);
e = 1/(1+delta);
//from eq. (5.70)
a = a0/(1+(a0/%pi/AR/(1+tow)));
//lift coefficient at alpha2 is given as
C_l2 = a*(alpha2 - alpha_L0);
//from eq.(5.42), the induced angle of attack can be calculated as
alpha_i = C_l2/%pi/AR;
//which gives the effective angle of attack as
alpha_eff = alpha2 - alpha_i;
//Thus the airfoil lift coefficient is given as
c_l = a0*(alpha_eff-alpha_L0);
c_d = 0.0065; //section drag coefficient for calculated c_l as seen from fig. 5.2b
//Thus the wing drag coefficient can be calculated as
C_D = c_d + ((C_l2^2)/%pi/e/AR);
printf("\nRESULTS\n--------\nThe drag coefficient of the wing is\n C_D = %1.4f\n",C_D) |
95797c739b99ae2ae3a548b532c092cf758bfb48 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1286/CH2/EX2.15/2_15.sce | bb51013ede73e8fd5f32b4a223a7e800bec758d6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 127 | sce | 2_15.sce | clc
//initialisation
s=0.00018//1/c
dt=1//c
//CALCULATIONS
p=(s*dt)*100
//results
printf(' percentage change= % 1f',p)
|
2a21f02bec24b160098b75611967caaafd45fa70 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH5/EX5.11/Ex5_11.sce | e3d28b21c3697827cb7aa234b171a730ec5210cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 988 | sce | Ex5_11.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 5 Example 11")
m=2;//mass of air in kg
v1=1;//initial volume of air in m^3
v2=10;//final volume of air in m^3
R=287;//gas constant in J/kg K
disp("during free expansion temperature remains same and it is an irreversible process.for getting change in entropy let us approximate this expansion process as a reversible isothermal expansion")
disp("a> change in entropy of air(deltaS_air)in J/K")
disp("deltaS_air=m*R*log(v2/v1)")
deltaS_air=m*R*log(v2/v1)
disp("b> during free expansion on heat is gained or lost to surrounding so,")
disp("deltaS_surrounding=0")
disp("entropy change of surroundings=0")
deltaS_surrounding=0;//entropy change of surroundings
disp("c> entropy change of universe(deltaS_universe)in J/K")
disp("deltaS_universe=deltaS_air+deltaS_surrounding")
deltaS_universe=deltaS_air+deltaS_surrounding
|
3a6ecd30a2fa069f945036fb5b6f91c383a66351 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1499/CH2/EX2.5/q5.sce | 7396e52e6742d95a1ccd4bc0bf3215807f73ff09 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 285 | sce | q5.sce |
s=%s; // first create a variable
Wn=%Wn;
Wd=%Wd;
num=1;
den=10*s+s^2;
TF=syslin('c',num,den)
[wn,z] = damp(TF)
zeta=z/(2*wn)
ts=4/(zeta*wn)
t=linspace(0,5,500);
step_res=csim('step',t,TF);
plot(t,step_res)
xgrid()
xtitle('Step response','time','response');
|
5af34dbcf84bffe6094da12a08a3b37a4112fb8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH20/EX20.22/20_22.sce | 71bb1a39685bad116f8a1141d503e49ab3984b32 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 234 | sce | 20_22.sce | clc;
clear;
mvan=6800e6;
v=132e3;
mvac=200e6;
mvae=mvan-mvac;
n=mvan/(sqrt(3)*v);
e=mvae/(1.681*v);
e=fix(e/10)*10;
n=fix(n/10)*10;
printf("normal fault current=%f/_-90 kA\nEffective fault current=%f/_-90 kA",n/1e3,e/1e3);
|
8750ea8cb4b8f65aeb9931d4f8d531efdc8e95cc | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/risetime/risetime11.sce | 93d7b5fcb4c9d7f05db4875c93741297812ac5d7 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 61 | sce | risetime11.sce | x=[1 2 4 5];
[d]=risetime(x);
disp(d);
//output
// 1.526
|
f3bc01a27288ce1463bd8992a1aed602250e7969 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH7/EX7.11/Ex7_11.sce | 098e0c084f565b8db76b1b4447f891e54516d297 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 525 | sce | Ex7_11.sce | clc
//to calculate uncertainity in position
//actual formula is (delx)min*(delp)max=h/2*%pi-------------eq(1)
//(delp)max=p(momentum of the electron)
//mv=mov/sqrt(1-(v/c)^2)---------------------eq(2)
mo=9*10^-31 //mass of an electron in m/s
c=3*10^8 //light speed in m/s
v=3*10^7 //velocity in m/s
h=6.6*10^-34 //plank's constant in J/s
//from eq(1) and eq(2),we get
delxmin=(h*sqrt(1-(v/c)^2))/(2*%pi*mo*v)
disp("smallest possible uncertainity in the position of an electron is delxmin="+string(delxmin)+"m")
|
33c7d0e034ae458eaaf075c51ec2c882d78e1575 | 7ca4d14804b833145ecf38070ff4e4b399cf4bfb | /tst/title.sce | dd5d25b7b7113d2ac711153a0c73c256df6b1da1 | [] | no_license | gsz050769/jsqsce | 6154e5d9fcd5b7884df7463963b982d26ba57942 | eb6881fa08ec6f8eea3355d689f3be91afd7bbfe | refs/heads/master | 2023-08-21T06:30:18.493109 | 2021-10-21T13:23:27 | 2021-10-21T13:23:27 | 343,663,868 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,529 | sce | title.sce | // Commands, syntax:
// STATUS: = get status message
// S_MSG: = setMsg <sip_id>|<a_msg_id>|<prio>|<ttl>|text|
// S_MSG_FILE: = setMsg <sip_id>|<a_msg_id>|<file>| setMsg from <file>
// D_MSG: = delMsg <sip_id>|<a_msg_id>
// POS_BLE: = ble position req <sip_id>
// POS_BLE: = dect position req <sip_id>
// WAIT: = sleep <seconds>
// RESTART: = start script again
// END: = end scenrio here
// LOG: = free text for console log outputput <text>
+++++++++++++++++++++++++++
LOG: title test cases start
+++++++++++++++++++++++++++
WAIT: 1
+++++++++++++++++++++++++++
LOG:determine api status
+++++++++++++++++++++++++++
STATUS:
WAIT: 2
+++++++++++++++++++++++++++
LOG:delete message
+++++++++++++++++++++++++++
D_MSG:4021|4021_1|
WAIT: 2
+++++++++++++++++++++++++++
LOG:new prio 7 title= "123456789012345678" 18 chars
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_1|./tst/msg/tst_15.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 7 title= "ÄÜÖäüöÄÜÖäüöÄÜÖäüö" 18 chars
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_1|./tst/msg/tst_16.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 7 title= "ÄÜÖäüö" 6 chars
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_1|./tst/msg/tst_17.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 7 title= "ÄÜÖäüöÜäüÖ" 10 chars
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_1|./tst/msg/tst_18.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 7 title= "ÄÜÖäüöÜäüÖö" 11 chars
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_1|./tst/msg/tst_19.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 7 title= "12345678901234567890" 20 chars
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_1|./tst/msg/tst_20.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 7 title= "123456789012345678901" 21 chars
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_1|./tst/msg/tst_21.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 7 title= "þÿ®Aa¶Æ" 7 chars
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_1|./tst/msg/tst_22.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 7 title= "ثaصbطcػ" 6 chars
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_1|./tst/msg/tst_23.json|
+++++++++++++++++++++++++++
WAIT: 50
END:
|
1a7e758665c912994059057eccc75348d5be39b3 | b26cbe6bc3e201f030705aaf9eb82da94def231f | /tests/laminarity-014.tst | a19c362924aa9a530dd020786f2c36011905716b | [] | no_license | RP-pbm/Recurrence-plot | f86c5cd85460661b01a609f8f4281d2cda6b4e07 | b5da95f9b30c1a924a002102219bf0a2ad47df2c | refs/heads/master | 2022-07-24T12:11:34.163543 | 2022-07-09T19:32:43 | 2022-07-09T19:32:43 | 92,934,698 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 27 | tst | laminarity-014.tst | ../inputs/laminarity-01.ssv |
fc5aac24bb593a6f56ef76d988c2390c75d6781d | e2ae697563b1b764d79ea1933b555ab0d5e3849c | /macros/measure.sci | 90b69537eec7c72e38048c897c8ecc47535e1a0f | [] | no_license | gq-liu/IPDesignLab | c49b760740f47ec636232a6947aecb3c0626518a | b2f9a9eecad6616c99a2ec20fcceb14fb3ed0c3f | refs/heads/master | 2022-01-18T13:30:55.972779 | 2019-05-06T17:23:12 | 2019-05-06T17:23:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,382 | sci | measure.sci | function measure()
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
// Authors
// Holger Nahrstaedt - 2010
// Ishan Pendharkar - 2001-2007
global k g handles
// wait for a mouse click in any window
//xset('window',0)
scf(0)
[c_i,c_x,c_y,c_w,c_m]=xclick()
// ******************* In Main Window *********************
if c_i==3 & c_w==0 then, //if click on main window...
k=getgain(c_x,c_y); // get gain on root locus
end;
if k>0 then,
r=roots(denom(g/(1+k*g)));
markpoles(r);
if k>get(handles.GainSlider,'max') then,
set(handles.GainSlider,'value',k);
set(handles.ScaleValue,'string',string(k));
end;
end;
//return;
endfunction |
ac8ffd95b25537273ddf66a9c6a208ae180a7c55 | 953c29c95b40d5e8952eb7738a8bfcf17e4741ca | /goldenratiospiral.sce | e6514826c824d8a7cc595356be5e41f296d2e964 | [] | no_license | danielzonn/Trippy-Shape-Drawing | 63871210fc8cda0546e3cd43b67df48425f2d69b | 7108b40c2b11c1bd27277bad4556f0a5f8e0c37f | refs/heads/master | 2023-08-14T07:39:06.678421 | 2018-12-27T18:51:45 | 2018-12-27T18:51:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 908 | sce | goldenratiospiral.sce | //These are golden ratios in terms of numbers and angles in degrees
phid=137.5077;
phi=1.618034;
figure;
//plotting simple outward spirals of circles that are phid offset and phi ratio diameter increasing
//initializing basic variables
r_spiral = 1;
r=1;
theta=0;
r_fibo_counter(1)=0;
r_fibo_counter(2)=1;
for i=1:1:20
r_fibo_counter(i+2)=r_fibo_counter(i)+r_fibo_counter(i+1);
n=5; //number of spirals
for j=0:1:n-1
xc=r_spiral*cosd(theta+ (j* (360/n)));
yc=r_spiral*sind(theta+ (j* (360/n)));
a = linspace(0, 360, 100);
//x axis
x = xc + r*cosd(a);
//y axis
y = yc + r*sind(a);
//plot the circle
plot(x, y);
end
theta=theta+phid;
r_spiral=2*sqrt(i);
//r_spiral=r_fibo_counter(i);n
r=sqrt(i);
//disp(r);
end
//figure
//n=1:500;
//r=sqrt(n);
//t=phid*%pi/180*n;
//plot(r.*cos(t),r.*sin(t),'x')
|
f01fb90cb7ecc1568075844969786a09e1175620 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2267/CH7/EX7.7/ex7_7.sce | 5470ad7244aab7f264c06d5f2103e54473b2631d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 548 | sce | ex7_7.sce | //Part A Chapter 7 Example 7
clc;
clear;
close;
p=0.15;//MPa
x=10/100;//quality
hf=467.11;//kJ/kg//at 0.15 MPa
hg=2693.6;//kJ/kg//at 0.15 MPa
vf=0.001053;//m^3/kg//at 0.15 MPa
vg=1.1593;//m^3/kg//at 0.15 MPa
sf=1.4336;//kJ/kg.K//at 0.15 MPa
sg=7.2233;//kJ/kg.K//at 0.15 MPa
hfg=hg-hf;//kJ/kg//
h=hf+x*hfg;//kJ/kg
disp("Enthalpy is "+string(h)+" kJ/kg");
vfg=vg-vf;//m^3/kg//
v=vf+x*vfg;//m^3/kg
disp("Specific volume is "+string(v)+" m^3/kg");
sfg=sg-sf;//kJ/kg.K
s=sf+x*sfg;//kJ/kg.K
disp("Entropy is "+string(s)+" kJ/kg.K");
|
d1fa410791dfb81a94c1b9787ab69102a3c1dae1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1538/CH21/EX21.3/Ex21_3.sce | 38dcb93231dbb55594f11df606a87a8861d73769 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 393 | sce | Ex21_3.sce | //example-21.3
//page no-621
//given
//magnetic moment is 0.6 times bohr magneton and we know that beta is 9.27*10^-24 Am^2
beta=9.27*10^-24 //A/m^2
M=0.6*beta //A/m^2
//attice constant
a=0.35*10^-9 //m
//no of atoms per unit cell is given by
Ne=4
//saturation magnetisation for FCC unit cell is given by
Ms=Ne*M/a^3 //A/m
printf ("he saturation magnetisation is %f A/m",Ms)
|
4b95c895d6ed49ebecf023d2b7a7272e7b40a07a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3872/CH4/EX4.8/Ex4_8.sce | d508fc80549c5d7f760299d24037d53e71d7ffab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 802 | sce | Ex4_8.sce | // Book - Power System: Analysis & Design 5th Edition
// Authors - J. Duncan Glover, Mulukutla S. Sharma, Thomas J. Overbye
// Chapter - 4 : Example 4.8
// Scilab Version 6.0.0 : OS - Windows
clc;
clear;
H = 18; // Average line heightin ft
e = 8.854*10^-12;
D = 5; // Diameter of the conductor in ft
r = 0.023; // Radius of the copper conductor ft
Hxx = 2*(H); // Geometric mean radius in ft
Hxy = sqrt((Hxx)^2 + (5)^2); // Geometric mean distance in ft
Cxy = ((%pi)*(e))/((log(D/r))-(log(Hxy/Hxx))); // Line to Line capacitance in F/m
printf('Line to Line capacitance is (Cxy) = %0.3e F/m', Cxy);
|
3cea0a6165b7308f971d0f8db5886d8f2c8b9ffb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH2/EX2.4/ex2_4.sce | 0e55069813c17c22d3da4a785758851a3a83e9b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 312 | sce | ex2_4.sce | // Exa 2.4
clc;
clear;
close;
// Given data
K = 8.63*10^-5;
T = 300;// in K
N_C = 2.8*10^19;// in cm^-3
del_E = 0.25;
f_F = exp( (-del_E)/(K*T) );
disp(f_F,"The probability is : ");
n_o = N_C*exp( (-del_E)/(K*T) );// in cm^-3
disp(n_o,"The thermal equillibrium electron concentration in cm^-3 is");
|
1c43681b7ef4fd388a22232907391b52f693bd85 | 449d555969bfd7befe906877abab098c6e63a0e8 | /174/CH1/EX1.3/example1_3.sce | 98592f4a8fd5df985b5c1471aeb092b100622ecc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 987 | sce | example1_3.sce | // To find voltage drop across resistor
// Modern Electronic Instrumentation And Measurement Techniques
// By Albert D. Helfrick, William D. Cooper
// First Edition Second Impression, 2009
// Dorling Kindersly Pvt. Ltd. India
// Example 1-3 in Page 4
clear; clc; close;
// Given data
I = 3.18; //Current flowing through the resistor = 3.18A
R = 35.68; // The value of resistor = 35.68ohm
// Calculations
E = I*R;
printf("The voltage drop across the resistor = %0.4f volts",E);
disp('Since there are 3 significant figures involved in the multiplication, the result can be written only to a max of 3 significant figures');
printf("Hence the voltage drop across the resistor = %0.0f volts",E);
//Result
// The voltage drop across the resistor = 113.4624 volts
// Since there are 3 significant figures involved in the multiplication, the result can be written only to a max of 3 significant figures
// Hence the voltage drop across the resistor = 113 volts
|
744889b16eef5e506703e0a4131c516056c8db01 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2975/CH23/EX23.9w/Ex23_9w.sce | a6951ff5676360317cb39ac86eb4d2e119c32ec8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 951 | sce | Ex23_9w.sce | //developed in windows 8 operating system 64bit
//platform Scilab 5.4.1
//example 23_9w
clc;clear;
//Given Data
length_20=15; //Diameter of iron ring at 20 degree centigrade (Unit: cm)
length_req=15.05; //Diameter of iron ring at required temperature (Unit: cm)
temp=20; //Room Temperature (Unit: degree centigrade)
alpha_iron=12*10^-6; //Coefficient of linear expansion of iron (Unit : / degree centigrade)
//Calculation
change_temp=(length_req-length_20)/(length_20*alpha_iron); //Calculating change in temperature required (Unit : Centigrade)
new_temp=temp+change_temp; //Calculating the temperature required (Unit : Centigrade)
strain=(length_req-length_20)/length_20; //Calculating Strain (Unit: unit less)
disp(new_temp,"The minimum temperature of ring to be heated to is (Unit : Centigrade)");
disp(strain,"The strain developed in the ring when it comes to the room temperature is (Unit : unit less)");
|
22fd689cf3480024a6502b9e7230e155e9b9a021 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/m2sci/isacomment.sci | 51dfc2bf914dbb8a9b16a05e43078027dd40a7bd | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 753 | sci | isacomment.sci | function k=isacomment(txt)
// find if txt contains a matlab comment
// if no return 0 if yes return the position of the begining of the comment
// Copyright INRIA
kc=strindex(txt,'%')
k=0
if kc<>[] then
kq=strindex(txt,quote)
while %t then
qc=size(find(kq<kc(1)),2)
if modulo(qc,2)==0 then
k=kc(1)
break,
else //there is a single quote before %
//check for the beginning of the string
while qc>2 then
if (kq(qc-1)==kq(qc)-1) then
qc=qc-2,
else
break
end
end
kk=kq(qc)
prev= part(txt,kk-1)
if prev==' '|prev==','|prev==';'|prev=='='|prev=='['|prev=='(' then
kc(1)=[]
if kc==[] then break,end
else
k=kc(1)
break
end
end
end
end
|
fa66dd4ceced9520ea42f5ecec6d296ce114320b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2243/CH8/EX8.3/Ex8_3.sce | dfcb20c8faf30c914049cb35e6a4cb420475422c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 342 | sce | Ex8_3.sce | clc();
clear;
//Given :
mp = 1.007276470 ; // proton mass in u
mn = 1.008665012; // neutron mass in u
md = 2.013553215; // deuteron mass in u
//E = ( mp + mn - md)*c^2
// 1 u * c^2 = 931.5 MeV , where 1 u = 1.66*10^-27 kg and c = 3*10^8 m/s
E = (mp + mn - md)*931.5; // Binding energy in MeV
printf("Binding energy : %.3f MeV",E);
|
ffdcda0e2cfc5a1fe743cfe1f7d7fe88ac591302 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3888/CH11/EX11.3/Ex11_3.sce | 15433efaa852d24f5bcdb13c225728bde4bc671c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,098 | sce | Ex11_3.sce | //Electric Power Generation, Transmission and Distribution by S.N.Singh
//Publisher:PHI Learning Private Limited
//Year: 2012 ; Edition - 2
//Example 11.3
//Scilab Version : 6.0.0 ; OS : Windows
clc;
clear;
P=50; //Power of the line in MW
l=100; //Length of the line in km
pf=0.8; //Power factor
V=132; //Voltage of the line in kV
R=0.1; //Resistance of the conductor in Ohm/km
X=0.3; //Reactance of the conductor in Ohm/km
y=3*10^(-6); //Admittance of the conductor in mho/km
Vr=V/(3)^(1/2); //Receiving end voltage in kV
Z=(R+%i*X)*100; //Series impedance in Ohm
Y=(0.0+%i*y)*100; //Shunt admittance on mho
Ir=P*10^(3)/(3*Vr*pf); //Receiving end current in A
Vc=Vr*(pf+%i*0.6)+(Ir*Z/2)*10^(-3); //Capacitance voltage in kV
Ic=Y*Vc*10^(3); //Shunt branch current in A
Is=Ic+Ir; //Sending end current in A
Vs=Vc+(Is*Z/2)*10^(-3); //Sending end voltage in kV
Vsl=abs(Vs)*3^(1/2); //Line to line sending end voltage in kV
pf1=cos(atan(imag(Vs),real(Vs))-atan(imag(Is),real(Is))); //Sending end power factor
Vr1=abs(Vs)/(1+(Z*Y/2)); //Receiving end voltage at no_load in kV
reg=((abs(Vr1)-Vr)/Vr)*100; //Regulation of the line
eff=P*10^(6)/(P*10^(6)+3*((abs(Is)^(2)*R*l)/2+(Ir^(2)*R*l)/2))*100; //Efficiency of the line
Ic1=(Y/2)*Vr*10^(3); //Capacitance 1 current in A
Il=Ir*(0.8-%i*0.6)+Ic1; //Line current in A
Vs1=Vr+Il*Z*10^(-3); //Sending end voltage in kV
Vsl1=abs(Vs1)*3^(1/2); //Line to line sending end voltage in kV
Ic2=((Y/2)*Vs1*10^(3)); //Capacitance 2 current in A
Is1=Il+Ic2; //Sending end current in A
pf2=cos(atan(imag(Vs1),real(Vs1))-atan(imag(Is1),real(Is1))); //Power factor
V=abs(Vs1)/(1+(Z*Y/2)); //Receiving end voltage at no_load in kV
reg1=((abs(V)-Vr)/Vr)*100; //Regulation of the line
eff1=(P*10^(6)/(P*10^(6)+3*(abs(Il)^(2)*R*l)))*100; //Efficiency of the line
printf("\nnominal-T method");
printf("\nSending end voltage of the line %.2f kV",Vsl);
printf("\nSending end powerfactor of the line %.3f",pf1);
printf("\nEfficiency of the line %.2f percentage",eff);
printf("\nRegulation of the line %.2f percentage",reg);
printf("\nnominal-pi method");
printf("\nSending end voltage of the line %.2f kV",Vsl1);
printf("\nSending end powerfactor of the line %.3f",pf2);
printf("\nEfficiency of the line %.2f percentage",eff1);
printf("\nRegulation of the line %.2f percentage",reg1);
//Variation present in result due to wrong calculation of Ic2 value
|
269557d95d310a8f8daa5aa75af76a8b1d1c0b0a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2411/CH2/EX2.12/Ex2_12.sce | f11f61cd4cb2dcefb86dc8343dfa0e3aaf224cf5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 628 | sce | Ex2_12.sce | // Scilab Code Ex2.12: Page-80 (2008)
clc; clear;
t = poly(0, 't');
x = t^2 + 1;
y = 2*t^2;
z = t^3;
F = [3*x*y -5*z 10*x]; // Force acting on the particle, N
t1 = 1; // lower limit
t2 = 2; // upper limit
dr = [derivat(x); derivat(y); derivat(z)]; // Infinitesimal displacement, m
dW = F*dr; // Work done or infinitesimally small displcement, J
work_exp = sci2exp(dW); // Convert the polynomial to the expression
W = integrate(work_exp, 't', t1, t2); // Total work done in moving the particle in a force field, J
printf("\nThe total work done in moving the particle in a force field = %d J", W);
// Result |
65d5590924a738621185207ad09d38087443c793 | 18bf68cdf766092ccdcba8d231e8140063833a5a | /UnitImpulseCT.sce | 71c37d2786776d2a246fc7671f06368caa6d0b6f | [] | no_license | goodengineer/Scilab-Exercises | b51cc9a4c938f0289a32875d2d21eb9061d0e68e | 3c268211fe48e7e4d0002e44757ea8b50cda10f9 | refs/heads/master | 2022-12-24T23:30:12.875423 | 2020-10-05T06:27:20 | 2020-10-05T06:27:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 422 | sce | UnitImpulseCT.sce | // Unit Impuls for continuous time signal
clear;
clf;
function output = unitImp(t,a_d)
N = length(t);
output = zeros(1,N);
for i = 1 : N
if t(i) == -a_d
output(i) = 1;
else
end
end
endfunction
dt = 1/1000;
adv = 1;
t = -10 : dt : 10
y = unitImp(t,adv);
plot(t,y,'r');
xlabel("t","fontsize",2);
ylabel("y1","fontsize",2);
title("Unit Impulse (CT)","fontsize",2);
|
553acf9ae3451345dd27cd8fc79fc837f59e179a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH12/EX12.7/Example12_7.sce | ea011306df128670cd3326603df04d871955bf41 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,016 | sce | Example12_7.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 5: MECHANICAL DESIGN OF OVERHEAD LINES
// EXAMPLE : 5.7 :
// Page number 200
clear ; clc ; close ; // Clear the work space and console
// Given data
W = 428/1000.0 // Weight(kg/m)
u = 1973.0 // Breaking strength(kg)
s = 2.0 // Factor of safety
l = 200.0 // Span(m)
h = 3.0 // Difference in tower height(m)
// Calculations
T = u/s // Allowable maximum tension(kg)
x_2 = (l/2.0)+(T*h/(W*l)) // Point of minimum sag from tower at higher level(m)
x_1 = l-x_2 // Point of minimum sag from tower at lower level(m)
// Results
disp("PART II - EXAMPLE : 5.7 : SOLUTION :-")
printf("\nPoint of minimum sag, x_1 = %.1f metres", x_1)
printf("\nPoint of minimum sag, x_2 = %.1f metres", x_2)
|
c0e41b08873c25e7a7108dd1a900560a7ee5a99e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH4/EX4.9/4Ex9.sce | 2c8a27a051e77b80ad8923592c0f15f51f10500f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 398 | sce | 4Ex9.sce | //Chapter 4 Ex 9
clc;
clear;
close;
//(i)
x1=17.28/(2*3.6*0.2);
mprintf("(i)The value of x is %.0f",x1);
//(ii)
x2=364.824/(3794.1696+36.4824-3648.24);
mprintf("\n(ii)The value of x is %.0f",x2);
//(iii)
x3=poly(0,'x');
for x3=1:0.1:10
if round(8.5-(5.5-(7.5+(2.8/x3)))*(4.25/0.04))==306
break;
end
end
mprintf("\n(iii)The value of x is %.1f",x3);
|
b3ce2dc28f9282b49ffacac5d28efd7e9299c2a3 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /InsaneTargetSwitch.sce | d5cacba09c92d427869dc845d1e01217245d4319 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 136,675 | sce | InsaneTargetSwitch.sce | Name=InsaneTargetSwitch
PlayerCharacters=Quaker
BotCharacters=Quaker Bot Long Strafes.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Quaker
AddedBots=Quaker Bot Long Strafes.bot;Quaker Bot Long Strafes.bot;Quaker Bot Long Strafes.bot;Quaker Bot Long Strafes.bot;Quaker Bot Long Strafes.bot;Quaker Bot Long Strafes.bot;Quaker Bot Long Strafes.bot;Quaker Bot Long Strafes.bot;Quaker Bot Long Strafes.bot
PlayerMaxLives=0
BotMaxLives=0;0;0;0;0;0;0;0;0
PlayerTeam=1
BotTeams=2;2;2;2;2;2;2;2;2
MapName=Fortnite Playground.map
MapScale=10.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=100000.0
ScorePerDamage=3.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=true
ScoreMultKillEfficiency=false
GameTag=Call of Duty, Battlefield, Overwatch, Apex, Fortnite, Quake, KrunkerCSGOflick
WeaponHeroTag=Deagle , Ak
DifficultyTag=4
AuthorsTag=Insane's Cracked
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Real, in game Target switching scenario - kill as many bots as you can. Aim at the head for additional damage. This is the Start of a new Era, all uploaders upload anything to the map as you please.. Enjoy
GameVersion=1.0.8.0
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[Aim Profile]
Name=At Feet
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill At Feet
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=Quaker Bot Long Strafes
DodgeProfileNames=Long Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Quaker
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Character Profile]
Name=Quaker
MaxHealth=200.0
WeaponProfileNames=;;;MGV2;;;;
MinRespawnDelay=0.001
MaxRespawnDelay=0.001
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=2000.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=1350.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=500.0
MainBBRadius=40.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=205.0
ProjBBRadius=27.5
ProjBBHasHead=false
ProjBBHeadRadius=22.5
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=1500.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Dodge Profile]
Name=Long Strafes
MaxTargetDistance=7000.0
MinTargetDistance=700.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=1.5
MaxLRTimeChange=3.0
MinFBTimeChange=0.8
MaxFBTimeChange=1.2
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.6
BlockedMovementReactionMin=0.05
BlockedMovementReactionMax=0.1
[Weapon Profile]
Name=MGV2
Type=Hitscan
ShotsPerClick=1
DamagePerShot=50.0
KnockbackFactor=0.0
TimeBetweenShots=0.08
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=10000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=3.0
MagazineMax=7
AmmoPerShot=1
ReloadTimeFromEmpty=2.0
ReloadTimeFromPartial=2.0
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=1.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.0001
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.5
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.01
HitSoundCooldown=0.01
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=4.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=false
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.01
HitscanVisualRadius=0.001
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=30
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=80.0
ADSFOVScale=Horizontal (16:9)
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.8
TimeToRecoilReset=0.8
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=true
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
0.000000 96.000000 672.000000
8.000000 96.000000 672.000000
8.000000 96.000000 544.000000
0.000000 96.000000 544.000000
0.000000 0.000000 672.000000
8.000000 0.000000 672.000000
8.000000 0.000000 544.000000
0.000000 0.000000 544.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
120.000000 96.000000 672.000000
128.000000 96.000000 672.000000
128.000000 96.000000 544.000000
120.000000 96.000000 544.000000
120.000000 0.000000 672.000000
128.000000 0.000000 672.000000
128.000000 0.000000 544.000000
120.000000 0.000000 544.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
0.000000 104.000000 672.000000
128.000000 104.000000 672.000000
128.000000 104.000000 544.000000
0.000000 104.000000 544.000000
0.000000 96.000000 672.000000
128.000000 96.000000 672.000000
128.000000 96.000000 544.000000
0.000000 96.000000 544.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
8.000000 96.000000 672.000000
45.000000 96.000000 672.000000
45.000000 96.000000 664.000000
8.000000 96.000000 664.000000
8.000000 0.000000 672.000000
45.000000 0.000000 672.000000
45.000000 0.000000 664.000000
8.000000 0.000000 664.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
83.000000 96.000000 672.000000
120.000000 96.000000 672.000000
120.000000 96.000000 664.000000
83.000000 96.000000 664.000000
83.000000 0.000000 672.000000
120.000000 0.000000 672.000000
120.000000 0.000000 664.000000
83.000000 0.000000 664.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
45.000000 96.000000 672.000000
83.000000 96.000000 672.000000
83.000000 96.000000 664.000000
45.000000 96.000000 664.000000
45.000000 64.000000 672.000000
83.000000 64.000000 672.000000
83.000000 64.000000 664.000000
45.000000 64.000000 664.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
504.000000 104.000000 160.000000
512.000000 104.000000 160.000000
512.000000 104.000000 32.000000
504.000000 104.000000 32.000000
504.000000 0.000000 160.000000
512.000000 0.000000 160.000000
512.000000 0.000000 32.000000
504.000000 0.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
504.000000 104.000000 288.000000
512.000000 104.000000 288.000000
512.000000 104.000000 160.000000
504.000000 104.000000 160.000000
504.000000 0.000000 288.000000
512.000000 0.000000 288.000000
512.000000 0.000000 160.000000
504.000000 0.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
504.000000 208.000000 288.000000
512.000000 208.000000 288.000000
512.000000 208.000000 160.000000
504.000000 208.000000 160.000000
504.000000 104.000000 288.000000
512.000000 104.000000 288.000000
512.000000 104.000000 160.000000
504.000000 104.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
264.000000 35.000000 1192.000000
376.000000 35.000000 1192.000000
376.000000 35.000000 1184.000000
264.000000 35.000000 1184.000000
264.000000 0.000000 1192.000000
376.000000 0.000000 1192.000000
376.000000 0.000000 1184.000000
264.000000 0.000000 1184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
504.000000 104.000000 928.000000
512.000000 104.000000 928.000000
512.000000 104.000000 800.000000
504.000000 104.000000 800.000000
504.000000 0.000000 928.000000
512.000000 0.000000 928.000000
512.000000 0.000000 800.000000
504.000000 0.000000 800.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
504.000000 208.000000 160.000000
512.000000 208.000000 160.000000
512.000000 208.000000 32.000000
504.000000 208.000000 32.000000
504.000000 104.000000 160.000000
512.000000 104.000000 160.000000
512.000000 104.000000 32.000000
504.000000 104.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
504.000000 312.000000 416.000000
512.000000 312.000000 416.000000
512.000000 312.000000 288.000000
504.000000 312.000000 288.000000
504.000000 208.000000 416.000000
512.000000 208.000000 416.000000
512.000000 208.000000 288.000000
504.000000 208.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-888.000000 400.000000 -408.000000
744.000000 400.000000 -408.000000
744.000000 400.000000 -440.000000
-888.000000 400.000000 -440.000000
-888.000000 -16.000000 -408.000000
744.000000 -16.000000 -408.000000
744.000000 -16.000000 -440.000000
-888.000000 -16.000000 -440.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 35.000000 32.000000
-8.000000 35.000000 32.000000
-8.000000 35.000000 24.000000
-256.000000 35.000000 24.000000
-256.000000 0.000000 32.000000
-8.000000 0.000000 32.000000
-8.000000 0.000000 24.000000
-256.000000 0.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-928.000000 400.000000 2256.000000
776.000000 400.000000 2256.000000
776.000000 400.000000 2224.000000
-928.000000 400.000000 2224.000000
-928.000000 -16.000000 2256.000000
776.000000 -16.000000 2256.000000
776.000000 -16.000000 2224.000000
-928.000000 -16.000000 2224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-928.000000 400.000000 2224.000000
-888.000000 400.000000 2224.000000
-888.000000 400.000000 -440.000000
-928.000000 400.000000 -440.000000
-928.000000 -16.000000 2224.000000
-888.000000 -16.000000 2224.000000
-888.000000 -16.000000 -440.000000
-928.000000 -16.000000 -440.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-896.000000 0.000000 2224.000000
752.000000 0.000000 2224.000000
752.000000 0.000000 -408.000000
-896.000000 0.000000 -408.000000
-896.000000 -16.000000 2224.000000
752.000000 -16.000000 2224.000000
752.000000 -16.000000 -408.000000
-896.000000 -16.000000 -408.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
744.000000 400.000000 2224.000000
776.000000 400.000000 2224.000000
776.000000 400.000000 -440.000000
744.000000 400.000000 -440.000000
744.000000 -16.000000 2224.000000
776.000000 -16.000000 2224.000000
776.000000 -16.000000 -440.000000
744.000000 -16.000000 -440.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 35.000000 2080.000000
504.000000 35.000000 2080.000000
504.000000 35.000000 2072.000000
256.000000 35.000000 2072.000000
256.000000 0.000000 2080.000000
504.000000 0.000000 2080.000000
504.000000 0.000000 2072.000000
256.000000 0.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
632.000000 96.000000 2072.000000
640.000000 96.000000 2072.000000
640.000000 96.000000 1952.000000
632.000000 96.000000 1952.000000
632.000000 0.000000 2072.000000
640.000000 0.000000 2072.000000
640.000000 0.000000 1952.000000
632.000000 0.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
632.000000 96.000000 1952.000000
640.000000 96.000000 1952.000000
640.000000 96.000000 1824.000000
632.000000 96.000000 1824.000000
632.000000 0.000000 1952.000000
640.000000 0.000000 1952.000000
640.000000 0.000000 1824.000000
632.000000 0.000000 1824.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
504.000000 96.000000 2080.000000
557.000000 96.000000 2080.000000
557.000000 96.000000 2072.000000
504.000000 96.000000 2072.000000
504.000000 0.000000 2080.000000
557.000000 0.000000 2080.000000
557.000000 0.000000 2072.000000
504.000000 0.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
557.000000 96.000000 2080.000000
595.000000 96.000000 2080.000000
595.000000 96.000000 2072.000000
557.000000 96.000000 2072.000000
557.000000 64.000000 2080.000000
595.000000 64.000000 2080.000000
595.000000 64.000000 2072.000000
557.000000 64.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
595.000000 96.000000 2080.000000
640.000000 96.000000 2080.000000
640.000000 96.000000 2072.000000
595.000000 96.000000 2072.000000
595.000000 0.000000 2080.000000
640.000000 0.000000 2080.000000
640.000000 0.000000 2072.000000
595.000000 0.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 96.000000 2080.000000
504.000000 96.000000 2080.000000
504.000000 96.000000 2072.000000
256.000000 96.000000 2072.000000
256.000000 69.000000 2080.000000
504.000000 69.000000 2080.000000
504.000000 69.000000 2072.000000
256.000000 69.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 104.000000 2080.000000
512.000000 104.000000 2080.000000
512.000000 104.000000 1952.000000
384.000000 104.000000 1952.000000
384.000000 96.000000 2080.000000
512.000000 96.000000 2080.000000
512.000000 96.000000 1952.000000
384.000000 96.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 104.000000 2080.000000
640.000000 104.000000 2080.000000
640.000000 104.000000 1952.000000
512.000000 104.000000 1952.000000
512.000000 96.000000 2080.000000
640.000000 96.000000 2080.000000
640.000000 96.000000 1952.000000
512.000000 96.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 104.000000 1952.000000
640.000000 104.000000 1952.000000
640.000000 104.000000 1824.000000
512.000000 104.000000 1824.000000
512.000000 96.000000 1952.000000
640.000000 96.000000 1952.000000
640.000000 96.000000 1824.000000
512.000000 96.000000 1824.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 104.000000 1952.000000
512.000000 104.000000 1952.000000
512.000000 104.000000 1824.000000
384.000000 104.000000 1824.000000
384.000000 96.000000 1952.000000
512.000000 96.000000 1952.000000
512.000000 96.000000 1824.000000
384.000000 96.000000 1824.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 104.000000 2080.000000
384.000000 104.000000 2080.000000
384.000000 104.000000 2072.000000
256.000000 104.000000 2072.000000
256.000000 96.000000 2080.000000
384.000000 96.000000 2080.000000
384.000000 96.000000 2072.000000
256.000000 96.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 139.000000 2080.000000
504.000000 139.000000 2080.000000
504.000000 139.000000 2072.000000
256.000000 139.000000 2072.000000
256.000000 104.000000 2080.000000
504.000000 104.000000 2080.000000
504.000000 104.000000 2072.000000
256.000000 104.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
504.000000 200.000000 2080.000000
632.000000 200.000000 2080.000000
632.000000 200.000000 2072.000000
504.000000 200.000000 2072.000000
504.000000 104.000000 2080.000000
632.000000 104.000000 2080.000000
632.000000 104.000000 2072.000000
504.000000 104.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 200.000000 2080.000000
504.000000 200.000000 2080.000000
504.000000 200.000000 2072.000000
256.000000 200.000000 2072.000000
256.000000 173.000000 2080.000000
504.000000 173.000000 2080.000000
504.000000 173.000000 2072.000000
256.000000 173.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
632.000000 200.000000 2080.000000
640.000000 200.000000 2080.000000
640.000000 200.000000 2035.000000
632.000000 200.000000 2035.000000
632.000000 104.000000 2080.000000
640.000000 104.000000 2080.000000
640.000000 104.000000 2035.000000
632.000000 104.000000 2035.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
632.000000 200.000000 2035.000000
640.000000 200.000000 2035.000000
640.000000 200.000000 1997.000000
632.000000 200.000000 1997.000000
632.000000 168.000000 2035.000000
640.000000 168.000000 2035.000000
640.000000 168.000000 1997.000000
632.000000 168.000000 1997.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
632.000000 200.000000 1997.000000
640.000000 200.000000 1997.000000
640.000000 200.000000 1952.000000
632.000000 200.000000 1952.000000
632.000000 104.000000 1997.000000
640.000000 104.000000 1997.000000
640.000000 104.000000 1952.000000
632.000000 104.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
632.000000 200.000000 1952.000000
640.000000 200.000000 1952.000000
640.000000 200.000000 1832.000000
632.000000 200.000000 1832.000000
632.000000 104.000000 1952.000000
640.000000 104.000000 1952.000000
640.000000 104.000000 1832.000000
632.000000 104.000000 1832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-640.000000 96.000000 288.000000
-512.000000 96.000000 288.000000
-512.000000 104.000000 288.000000
-640.000000 0.000000 160.000000
-640.000000 104.000000 288.000000
-512.000000 -8.000000 160.000000
-512.000000 0.000000 160.000000
-640.000000 -8.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
256.000000 104.000000 1312.000000
384.000000 104.000000 1312.000000
384.000000 96.000000 1312.000000
384.000000 0.000000 1440.000000
256.000000 96.000000 1312.000000
256.000000 -8.000000 1440.000000
256.000000 0.000000 1440.000000
384.000000 -8.000000 1440.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
256.000000 104.000000 1312.000000
264.000000 104.000000 1312.000000
264.000000 104.000000 1184.000000
256.000000 104.000000 1184.000000
256.000000 0.000000 1312.000000
264.000000 0.000000 1312.000000
264.000000 0.000000 1184.000000
256.000000 0.000000 1184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
264.000000 104.000000 1192.000000
376.000000 104.000000 1192.000000
376.000000 104.000000 1184.000000
264.000000 104.000000 1184.000000
264.000000 69.000000 1192.000000
376.000000 69.000000 1192.000000
376.000000 69.000000 1184.000000
264.000000 69.000000 1184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
376.000000 104.000000 1312.000000
384.000000 104.000000 1312.000000
384.000000 104.000000 1184.000000
376.000000 104.000000 1184.000000
376.000000 0.000000 1312.000000
384.000000 0.000000 1312.000000
384.000000 0.000000 1184.000000
376.000000 0.000000 1184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 96.000000 672.000000
0.000000 96.000000 672.000000
0.000000 104.000000 672.000000
-128.000000 0.000000 544.000000
-128.000000 104.000000 672.000000
0.000000 -8.000000 544.000000
0.000000 0.000000 544.000000
-128.000000 -8.000000 544.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
385.000000 96.000000 160.000000
511.000000 96.000000 160.000000
511.000000 104.000000 160.000000
385.000000 0.000000 33.000000
385.000000 104.000000 160.000000
511.000000 -8.000000 33.000000
511.000000 0.000000 33.000000
385.000000 -8.000000 33.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
384.000000 96.000000 160.000000
512.000000 96.000000 160.000000
512.000000 96.000000 152.000000
384.000000 96.000000 152.000000
384.000000 0.000000 160.000000
512.000000 0.000000 160.000000
512.000000 0.000000 152.000000
384.000000 0.000000 152.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 200.000000 288.000000
511.000000 200.000000 288.000000
511.000000 208.000000 288.000000
384.000000 104.000000 160.000000
384.000000 208.000000 288.000000
511.000000 96.000000 160.000000
511.000000 104.000000 160.000000
384.000000 96.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
384.000000 304.000000 416.000000
511.000000 304.000000 416.000000
511.000000 312.000000 416.000000
384.000000 208.000000 288.000000
384.000000 312.000000 416.000000
511.000000 200.000000 288.000000
511.000000 208.000000 288.000000
384.000000 200.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
384.000000 312.000000 544.000000
511.000000 312.000000 544.000000
511.000000 312.000000 416.000000
384.000000 312.000000 416.000000
384.000000 304.000000 544.000000
511.000000 304.000000 544.000000
511.000000 304.000000 416.000000
384.000000 304.000000 416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 416.000000 543.000000
384.000000 312.000000 543.000000
384.000000 312.000000 416.000000
256.000000 408.000000 416.000000
256.000000 416.000000 416.000000
384.000000 304.000000 543.000000
384.000000 304.000000 416.000000
256.000000 408.000000 543.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
128.000000 416.000000 544.000000
256.000000 416.000000 544.000000
256.000000 416.000000 416.000000
128.000000 416.000000 416.000000
128.000000 408.000000 544.000000
256.000000 408.000000 544.000000
256.000000 408.000000 416.000000
128.000000 408.000000 416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 208.000000 2080.000000
512.000000 208.000000 2080.000000
512.000000 208.000000 1952.000000
384.000000 208.000000 1952.000000
384.000000 200.000000 2080.000000
512.000000 200.000000 2080.000000
512.000000 200.000000 1952.000000
384.000000 200.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 208.000000 2080.000000
640.000000 208.000000 2080.000000
640.000000 208.000000 1952.000000
512.000000 208.000000 1952.000000
512.000000 200.000000 2080.000000
640.000000 200.000000 2080.000000
640.000000 200.000000 1952.000000
512.000000 200.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 208.000000 1952.000000
640.000000 208.000000 1952.000000
640.000000 208.000000 1824.000000
512.000000 208.000000 1824.000000
512.000000 200.000000 1952.000000
640.000000 200.000000 1952.000000
640.000000 200.000000 1824.000000
512.000000 200.000000 1824.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 104.000000 2080.000000
384.000000 104.000000 2080.000000
384.000000 104.000000 1952.000000
256.000000 104.000000 1952.000000
256.000000 96.000000 2080.000000
384.000000 96.000000 2080.000000
384.000000 96.000000 1952.000000
256.000000 96.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 104.000000 1952.000000
384.000000 104.000000 1952.000000
384.000000 104.000000 1824.000000
256.000000 104.000000 1824.000000
256.000000 96.000000 1952.000000
384.000000 96.000000 1952.000000
384.000000 96.000000 1824.000000
256.000000 96.000000 1824.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 104.000000 24.000000
-128.000000 0.000000 24.000000
-128.000000 0.000000 -95.000000
-256.000000 96.000000 -95.000000
-256.000000 104.000000 -95.000000
-128.000000 -8.000000 24.000000
-128.000000 -8.000000 -95.000000
-256.000000 96.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-8.000000 96.000000 32.000000
45.000000 96.000000 32.000000
45.000000 96.000000 24.000000
-8.000000 96.000000 24.000000
-8.000000 0.000000 32.000000
45.000000 0.000000 32.000000
45.000000 0.000000 24.000000
-8.000000 0.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
45.000000 96.000000 32.000000
83.000000 96.000000 32.000000
83.000000 96.000000 24.000000
45.000000 96.000000 24.000000
45.000000 64.000000 32.000000
83.000000 64.000000 32.000000
83.000000 64.000000 24.000000
45.000000 64.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
83.000000 96.000000 32.000000
128.000000 96.000000 32.000000
128.000000 96.000000 24.000000
83.000000 96.000000 24.000000
83.000000 0.000000 32.000000
128.000000 0.000000 32.000000
128.000000 0.000000 24.000000
83.000000 0.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
120.000000 96.000000 24.000000
128.000000 96.000000 24.000000
128.000000 96.000000 -96.000000
120.000000 96.000000 -96.000000
120.000000 0.000000 24.000000
128.000000 0.000000 24.000000
128.000000 0.000000 -96.000000
120.000000 0.000000 -96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
0.000000 104.000000 32.000000
128.000000 104.000000 32.000000
128.000000 104.000000 -96.000000
0.000000 104.000000 -96.000000
0.000000 96.000000 32.000000
128.000000 96.000000 32.000000
128.000000 96.000000 -96.000000
0.000000 96.000000 -96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
120.000000 208.000000 32.000000
128.000000 208.000000 32.000000
128.000000 208.000000 -13.000000
120.000000 208.000000 -13.000000
120.000000 104.000000 32.000000
128.000000 104.000000 32.000000
128.000000 104.000000 -13.000000
120.000000 104.000000 -13.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
120.000000 208.000000 -51.000000
128.000000 208.000000 -51.000000
128.000000 208.000000 -96.000000
120.000000 208.000000 -96.000000
120.000000 104.000000 -51.000000
128.000000 104.000000 -51.000000
128.000000 104.000000 -96.000000
120.000000 104.000000 -96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
120.000000 208.000000 -13.000000
128.000000 208.000000 -13.000000
128.000000 208.000000 -51.000000
120.000000 208.000000 -51.000000
120.000000 168.000000 -13.000000
128.000000 168.000000 -13.000000
128.000000 168.000000 -51.000000
120.000000 168.000000 -51.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-8.000000 208.000000 32.000000
120.000000 208.000000 32.000000
120.000000 208.000000 24.000000
-8.000000 208.000000 24.000000
-8.000000 104.000000 32.000000
120.000000 104.000000 32.000000
120.000000 104.000000 24.000000
-8.000000 104.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 104.000000 32.000000
0.000000 104.000000 32.000000
0.000000 104.000000 -96.000000
-128.000000 104.000000 -96.000000
-128.000000 96.000000 32.000000
0.000000 96.000000 32.000000
0.000000 96.000000 -96.000000
-128.000000 96.000000 -96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 96.000000 32.000000
-8.000000 96.000000 32.000000
-8.000000 96.000000 24.000000
-256.000000 96.000000 24.000000
-256.000000 69.000000 32.000000
-8.000000 69.000000 32.000000
-8.000000 69.000000 24.000000
-256.000000 69.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 104.000000 32.000000
-128.000000 104.000000 32.000000
-128.000000 104.000000 24.000000
-256.000000 104.000000 24.000000
-256.000000 96.000000 32.000000
-128.000000 96.000000 32.000000
-128.000000 96.000000 24.000000
-256.000000 96.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 139.000000 32.000000
-8.000000 139.000000 32.000000
-8.000000 139.000000 24.000000
-256.000000 139.000000 24.000000
-256.000000 104.000000 32.000000
-8.000000 104.000000 32.000000
-8.000000 104.000000 24.000000
-256.000000 104.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 208.000000 32.000000
-8.000000 208.000000 32.000000
-8.000000 208.000000 24.000000
-256.000000 208.000000 24.000000
-256.000000 173.000000 32.000000
-8.000000 173.000000 32.000000
-8.000000 173.000000 24.000000
-256.000000 173.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 208.000000 2080.000000
384.000000 208.000000 2080.000000
384.000000 208.000000 1952.000000
256.000000 208.000000 1952.000000
256.000000 200.000000 2080.000000
384.000000 200.000000 2080.000000
384.000000 200.000000 1952.000000
256.000000 200.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 208.000000 1960.000000
512.000000 208.000000 1960.000000
512.000000 208.000000 1832.000000
384.000000 208.000000 1832.000000
384.000000 200.000000 1960.000000
512.000000 200.000000 1960.000000
512.000000 200.000000 1832.000000
384.000000 200.000000 1832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
632.000000 96.000000 1824.000000
640.000000 96.000000 1824.000000
640.000000 96.000000 1696.000000
632.000000 96.000000 1696.000000
632.000000 0.000000 1824.000000
640.000000 0.000000 1824.000000
640.000000 0.000000 1696.000000
632.000000 0.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 104.000000 1824.000000
640.000000 104.000000 1824.000000
640.000000 104.000000 1696.000000
512.000000 104.000000 1696.000000
512.000000 96.000000 1824.000000
640.000000 96.000000 1824.000000
640.000000 96.000000 1696.000000
512.000000 96.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 139.000000 1704.000000
640.000000 139.000000 1704.000000
640.000000 139.000000 1696.000000
512.000000 139.000000 1696.000000
512.000000 104.000000 1704.000000
640.000000 104.000000 1704.000000
640.000000 104.000000 1696.000000
512.000000 104.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 139.000000 1704.000000
512.000000 139.000000 1704.000000
512.000000 139.000000 1696.000000
384.000000 139.000000 1696.000000
384.000000 104.000000 1704.000000
512.000000 104.000000 1704.000000
512.000000 104.000000 1696.000000
384.000000 104.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 208.000000 1704.000000
512.000000 208.000000 1704.000000
512.000000 208.000000 1696.000000
384.000000 173.000000 1696.000000
384.000000 208.000000 1696.000000
512.000000 173.000000 1704.000000
512.000000 173.000000 1696.000000
384.000000 173.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
256.000000 139.000000 1704.000000
384.000000 139.000000 1704.000000
384.000000 139.000000 1696.000000
256.000000 139.000000 1696.000000
256.000000 104.000000 1704.000000
384.000000 104.000000 1704.000000
384.000000 104.000000 1696.000000
256.000000 104.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 208.000000 1832.000000
512.000000 208.000000 1832.000000
512.000000 208.000000 1704.000000
384.000000 208.000000 1704.000000
384.000000 200.000000 1832.000000
512.000000 200.000000 1832.000000
512.000000 200.000000 1704.000000
384.000000 200.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 104.000000 1824.000000
512.000000 104.000000 1824.000000
512.000000 104.000000 1696.000000
384.000000 104.000000 1696.000000
384.000000 96.000000 1824.000000
512.000000 96.000000 1824.000000
512.000000 96.000000 1696.000000
384.000000 96.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 104.000000 1824.000000
384.000000 104.000000 1824.000000
384.000000 104.000000 1696.000000
256.000000 104.000000 1696.000000
256.000000 96.000000 1824.000000
384.000000 96.000000 1824.000000
384.000000 96.000000 1696.000000
256.000000 96.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 139.000000 1832.000000
264.000000 139.000000 1832.000000
264.000000 139.000000 1704.000000
256.000000 139.000000 1704.000000
256.000000 104.000000 1832.000000
264.000000 104.000000 1832.000000
264.000000 104.000000 1704.000000
256.000000 104.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 208.000000 1952.000000
264.000000 208.000000 1952.000000
264.000000 208.000000 1832.000000
256.000000 208.000000 1832.000000
256.000000 104.000000 1952.000000
264.000000 104.000000 1952.000000
264.000000 104.000000 1832.000000
256.000000 104.000000 1832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 208.000000 1704.000000
384.000000 208.000000 1704.000000
384.000000 208.000000 1696.000000
256.000000 173.000000 1696.000000
256.000000 208.000000 1696.000000
384.000000 173.000000 1704.000000
384.000000 173.000000 1696.000000
256.000000 173.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
256.000000 208.000000 1832.000000
384.000000 208.000000 1832.000000
384.000000 208.000000 1704.000000
256.000000 208.000000 1704.000000
256.000000 200.000000 1832.000000
384.000000 200.000000 1832.000000
384.000000 200.000000 1704.000000
256.000000 200.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 200.000000 1832.000000
264.000000 200.000000 1832.000000
264.000000 200.000000 1704.000000
256.000000 200.000000 1704.000000
256.000000 173.000000 1832.000000
264.000000 173.000000 1832.000000
264.000000 173.000000 1704.000000
256.000000 173.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 208.000000 1832.000000
640.000000 208.000000 1832.000000
640.000000 208.000000 1704.000000
512.000000 208.000000 1704.000000
512.000000 200.000000 1832.000000
640.000000 200.000000 1832.000000
640.000000 200.000000 1704.000000
512.000000 200.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 208.000000 1704.000000
640.000000 208.000000 1704.000000
640.000000 208.000000 1696.000000
512.000000 208.000000 1696.000000
512.000000 173.000000 1704.000000
640.000000 173.000000 1704.000000
640.000000 173.000000 1696.000000
512.000000 173.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 312.000000 1704.000000
640.000000 312.000000 1704.000000
640.000000 312.000000 1696.000000
512.000000 312.000000 1696.000000
512.000000 277.000000 1704.000000
640.000000 277.000000 1704.000000
640.000000 277.000000 1696.000000
512.000000 277.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
595.000000 277.000000 1704.000000
640.000000 277.000000 1704.000000
640.000000 277.000000 1696.000000
595.000000 277.000000 1696.000000
595.000000 243.000000 1704.000000
640.000000 243.000000 1704.000000
640.000000 243.000000 1696.000000
595.000000 243.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 243.000000 1704.000000
640.000000 243.000000 1704.000000
640.000000 243.000000 1696.000000
512.000000 243.000000 1696.000000
512.000000 208.000000 1704.000000
640.000000 208.000000 1704.000000
640.000000 208.000000 1696.000000
512.000000 208.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 277.000000 1704.000000
557.000000 277.000000 1704.000000
557.000000 277.000000 1696.000000
512.000000 277.000000 1696.000000
512.000000 243.000000 1704.000000
557.000000 243.000000 1704.000000
557.000000 243.000000 1696.000000
512.000000 243.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 243.000000 1704.000000
512.000000 243.000000 1704.000000
512.000000 243.000000 1696.000000
384.000000 243.000000 1696.000000
384.000000 208.000000 1704.000000
512.000000 208.000000 1704.000000
512.000000 208.000000 1696.000000
384.000000 208.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 312.000000 1704.000000
512.000000 312.000000 1704.000000
512.000000 312.000000 1696.000000
384.000000 277.000000 1696.000000
384.000000 312.000000 1696.000000
512.000000 277.000000 1704.000000
512.000000 277.000000 1696.000000
384.000000 277.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
467.000000 277.000000 1704.000000
512.000000 277.000000 1704.000000
512.000000 277.000000 1696.000000
467.000000 277.000000 1696.000000
467.000000 243.000000 1704.000000
512.000000 243.000000 1704.000000
512.000000 243.000000 1696.000000
467.000000 243.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 277.000000 1704.000000
429.000000 277.000000 1704.000000
429.000000 277.000000 1696.000000
384.000000 277.000000 1696.000000
384.000000 243.000000 1704.000000
429.000000 243.000000 1704.000000
429.000000 243.000000 1696.000000
384.000000 243.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 312.000000 1704.000000
384.000000 312.000000 1704.000000
384.000000 312.000000 1696.000000
256.000000 277.000000 1696.000000
256.000000 312.000000 1696.000000
384.000000 277.000000 1704.000000
384.000000 277.000000 1696.000000
256.000000 277.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
256.000000 277.000000 1704.000000
301.000000 277.000000 1704.000000
301.000000 277.000000 1696.000000
256.000000 277.000000 1696.000000
256.000000 243.000000 1704.000000
301.000000 243.000000 1704.000000
301.000000 243.000000 1696.000000
256.000000 243.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
339.000000 277.000000 1704.000000
384.000000 277.000000 1704.000000
384.000000 277.000000 1696.000000
339.000000 277.000000 1696.000000
339.000000 243.000000 1704.000000
384.000000 243.000000 1704.000000
384.000000 243.000000 1696.000000
339.000000 243.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 243.000000 1704.000000
384.000000 243.000000 1704.000000
384.000000 243.000000 1696.000000
256.000000 243.000000 1696.000000
256.000000 208.000000 1704.000000
384.000000 208.000000 1704.000000
384.000000 208.000000 1696.000000
256.000000 208.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
632.000000 304.000000 1824.000000
640.000000 304.000000 1824.000000
640.000000 304.000000 1704.000000
632.000000 304.000000 1704.000000
632.000000 208.000000 1824.000000
640.000000 208.000000 1824.000000
640.000000 208.000000 1704.000000
632.000000 208.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
257.000000 208.000000 1824.000000
384.000000 208.000000 1824.000000
384.000000 200.000000 1824.000000
384.000000 104.000000 1952.000000
257.000000 200.000000 1824.000000
257.000000 96.000000 1952.000000
257.000000 104.000000 1952.000000
384.000000 96.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
255.000000 277.000000 1749.000000
263.000000 277.000000 1749.000000
263.000000 277.000000 1704.000000
255.000000 277.000000 1704.000000
255.000000 243.000000 1749.000000
263.000000 243.000000 1749.000000
263.000000 243.000000 1704.000000
255.000000 243.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 277.000000 1832.000000
264.000000 277.000000 1832.000000
264.000000 277.000000 1787.000000
256.000000 277.000000 1787.000000
256.000000 243.000000 1832.000000
264.000000 243.000000 1832.000000
264.000000 243.000000 1787.000000
256.000000 243.000000 1787.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 243.000000 1832.000000
264.000000 243.000000 1832.000000
264.000000 243.000000 1704.000000
256.000000 243.000000 1704.000000
256.000000 208.000000 1832.000000
264.000000 208.000000 1832.000000
264.000000 208.000000 1704.000000
256.000000 208.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 312.000000 1832.000000
264.000000 312.000000 1832.000000
264.000000 312.000000 1704.000000
256.000000 312.000000 1704.000000
256.000000 277.000000 1832.000000
264.000000 277.000000 1832.000000
264.000000 277.000000 1704.000000
256.000000 277.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
504.000000 304.000000 2080.000000
632.000000 304.000000 2080.000000
632.000000 304.000000 2072.000000
504.000000 304.000000 2072.000000
504.000000 208.000000 2080.000000
632.000000 208.000000 2080.000000
632.000000 208.000000 2072.000000
504.000000 208.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
632.000000 304.000000 2080.000000
640.000000 304.000000 2080.000000
640.000000 304.000000 1952.000000
632.000000 304.000000 1952.000000
632.000000 208.000000 2080.000000
640.000000 208.000000 2080.000000
640.000000 208.000000 1952.000000
632.000000 208.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
632.000000 200.000000 1832.000000
640.000000 200.000000 1832.000000
640.000000 200.000000 1704.000000
632.000000 200.000000 1704.000000
632.000000 104.000000 1832.000000
640.000000 104.000000 1832.000000
640.000000 104.000000 1704.000000
632.000000 104.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
632.000000 304.000000 1952.000000
640.000000 304.000000 1952.000000
640.000000 304.000000 1824.000000
632.000000 304.000000 1824.000000
632.000000 208.000000 1952.000000
640.000000 208.000000 1952.000000
640.000000 208.000000 1824.000000
632.000000 208.000000 1824.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
376.000000 304.000000 2080.000000
504.000000 304.000000 2080.000000
504.000000 304.000000 2072.000000
376.000000 304.000000 2072.000000
376.000000 208.000000 2080.000000
504.000000 208.000000 2080.000000
504.000000 208.000000 2072.000000
376.000000 208.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 304.000000 2080.000000
376.000000 304.000000 2080.000000
376.000000 304.000000 2072.000000
256.000000 304.000000 2072.000000
256.000000 208.000000 2080.000000
376.000000 208.000000 2080.000000
376.000000 208.000000 2072.000000
256.000000 208.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 200.000000 1997.000000
264.000000 200.000000 1997.000000
264.000000 200.000000 1952.000000
256.000000 200.000000 1952.000000
256.000000 104.000000 1997.000000
264.000000 104.000000 1997.000000
264.000000 104.000000 1952.000000
256.000000 104.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 200.000000 2035.000000
264.000000 200.000000 2035.000000
264.000000 200.000000 1997.000000
256.000000 200.000000 1997.000000
256.000000 168.000000 2035.000000
264.000000 168.000000 2035.000000
264.000000 168.000000 1997.000000
256.000000 168.000000 1997.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 200.000000 2072.000000
264.000000 200.000000 2072.000000
264.000000 200.000000 2035.000000
256.000000 200.000000 2035.000000
256.000000 104.000000 2072.000000
264.000000 104.000000 2072.000000
264.000000 104.000000 2035.000000
256.000000 104.000000 2035.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
128.000000 0.000000 2080.000000
256.000000 104.000000 2080.000000
256.000000 104.000000 1952.000000
128.000000 -8.000000 2080.000000
128.000000 -8.000000 1952.000000
256.000000 96.000000 2080.000000
256.000000 96.000000 1952.000000
128.000000 0.000000 1952.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 3 4 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 6 4 7 0x00000000
brush
vertices
256.000000 35.000000 1704.000000
384.000000 35.000000 1704.000000
384.000000 35.000000 1696.000000
256.000000 35.000000 1696.000000
256.000000 0.000000 1704.000000
384.000000 0.000000 1704.000000
384.000000 0.000000 1696.000000
256.000000 0.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 96.000000 1704.000000
384.000000 96.000000 1704.000000
384.000000 96.000000 1696.000000
256.000000 69.000000 1696.000000
256.000000 96.000000 1696.000000
384.000000 69.000000 1704.000000
384.000000 69.000000 1696.000000
256.000000 69.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
256.000000 96.000000 800.000000
384.000000 96.000000 800.000000
384.000000 104.000000 800.000000
256.000000 0.000000 672.000000
256.000000 104.000000 800.000000
384.000000 -8.000000 672.000000
384.000000 0.000000 672.000000
256.000000 -8.000000 672.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
384.000000 96.000000 800.000000
512.000000 96.000000 800.000000
512.000000 104.000000 800.000000
384.000000 0.000000 672.000000
384.000000 104.000000 800.000000
512.000000 -8.000000 672.000000
512.000000 0.000000 672.000000
384.000000 -8.000000 672.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-512.000000 96.000000 288.000000
-384.000000 96.000000 288.000000
-384.000000 104.000000 288.000000
-512.000000 0.000000 160.000000
-512.000000 104.000000 288.000000
-384.000000 -8.000000 160.000000
-384.000000 0.000000 160.000000
-512.000000 -8.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
256.000000 208.000000 160.000000
384.000000 104.000000 160.000000
384.000000 104.000000 33.000000
256.000000 200.000000 33.000000
256.000000 208.000000 33.000000
384.000000 96.000000 160.000000
384.000000 96.000000 33.000000
256.000000 200.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
384.000000 104.000000 160.000000
392.000000 104.000000 160.000000
392.000000 104.000000 32.000000
384.000000 104.000000 32.000000
384.000000 0.000000 160.000000
392.000000 0.000000 160.000000
392.000000 0.000000 32.000000
384.000000 0.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-520.000000 26.000000 812.000000
-520.000000 -2.000000 812.000000
-520.000000 -2.000000 801.000000
-536.000000 4.000000 812.000000
-520.000000 26.000000 801.000000
-536.000000 20.000000 801.000000
-536.000000 20.000000 812.000000
-536.000000 4.000000 801.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-520.000000 26.000000 812.000000
-504.000000 20.000000 812.000000
-504.000000 20.000000 801.000000
-504.000000 4.000000 812.000000
-520.000000 26.000000 801.000000
-520.000000 -2.000000 801.000000
-520.000000 -2.000000 812.000000
-504.000000 4.000000 802.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-520.000000 26.000000 887.000000
-520.000000 -2.000000 887.000000
-520.000000 -2.000000 876.000000
-536.000000 4.000000 887.000000
-520.000000 26.000000 876.000000
-536.000000 20.000000 876.000000
-536.000000 20.000000 887.000000
-536.000000 4.000000 876.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-520.000000 26.000000 887.000000
-504.000000 20.000000 887.000000
-504.000000 20.000000 876.000000
-504.000000 4.000000 888.000000
-520.000000 26.000000 876.000000
-520.000000 -2.000000 876.000000
-520.000000 -2.000000 887.000000
-504.000000 4.000000 876.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-432.000000 26.000000 812.000000
-416.000000 20.000000 812.000000
-416.000000 20.000000 801.000000
-416.000000 4.000000 812.000000
-432.000000 26.000000 801.000000
-432.000000 -2.000000 801.000000
-432.000000 -2.000000 812.000000
-416.000000 4.000000 802.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-432.000000 26.000000 812.000000
-432.000000 -2.000000 812.000000
-432.000000 -2.000000 801.000000
-448.000000 4.000000 812.000000
-432.000000 26.000000 801.000000
-448.000000 20.000000 801.000000
-448.000000 20.000000 812.000000
-448.000000 4.000000 801.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-432.000000 26.000000 887.000000
-416.000000 20.000000 887.000000
-416.000000 20.000000 876.000000
-416.000000 4.000000 887.000000
-432.000000 26.000000 876.000000
-432.000000 -2.000000 876.000000
-432.000000 -2.000000 887.000000
-416.000000 4.000000 876.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-432.000000 26.000000 887.000000
-432.000000 -2.000000 887.000000
-432.000000 -2.000000 876.000000
-448.000000 4.000000 887.000000
-432.000000 26.000000 876.000000
-448.000000 20.000000 876.000000
-448.000000 20.000000 887.000000
-448.000000 4.000000 876.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-568.000000 41.000000 888.000000
-384.000000 41.000000 888.000000
-384.000000 41.000000 800.000000
-568.000000 41.000000 800.000000
-568.000000 9.000000 888.000000
-384.000000 9.000000 888.000000
-384.000000 9.000000 800.000000
-568.000000 9.000000 800.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-520.000000 71.000000 887.000000
-464.000000 71.000000 887.000000
-464.000000 71.000000 801.000000
-464.000000 41.000000 888.000000
-520.000000 71.000000 801.000000
-520.000000 41.000000 800.000000
-520.000000 41.000000 888.000000
-464.000000 41.000000 800.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-533.000000 71.000000 886.000000
-520.000000 71.000000 887.000000
-520.000000 71.000000 801.000000
-542.000000 40.000000 801.000000
-533.000000 71.000000 802.000000
-520.000000 40.000000 888.000000
-520.000000 40.000000 800.000000
-541.000000 40.000000 887.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-464.000000 71.000000 887.000000
-434.000000 44.000000 886.000000
-434.000000 44.000000 802.000000
-432.000000 41.000000 887.000000
-464.000000 71.000000 801.000000
-464.000000 41.000000 800.000000
-464.000000 41.000000 888.000000
-432.000000 41.000000 801.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-296.000000 104.000000 1696.000000
-288.000000 104.000000 1696.000000
-288.000000 104.000000 1576.000000
-296.000000 104.000000 1576.000000
-296.000000 0.000000 1696.000000
-288.000000 0.000000 1696.000000
-288.000000 0.000000 1576.000000
-296.000000 0.000000 1576.000000
faces
0.000000 0.000000 0.500000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-800.000000 96.000000 1576.000000
-288.000000 96.000000 1576.000000
-288.000000 96.000000 1568.000000
-800.000000 96.000000 1568.000000
-800.000000 0.000000 1576.000000
-288.000000 0.000000 1576.000000
-288.000000 0.000000 1568.000000
-800.000000 0.000000 1568.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-416.000000 104.000000 1568.000000
-289.000000 104.000000 1568.000000
-289.000000 96.000000 1568.000000
-289.000000 0.000000 1695.000000
-416.000000 96.000000 1568.000000
-416.000000 -8.000000 1695.000000
-416.000000 0.000000 1695.000000
-289.000000 -8.000000 1695.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-416.000000 96.000000 1568.000000
-289.000000 96.000000 1568.000000
-289.000000 104.000000 1568.000000
-416.000000 0.000000 1440.000000
-416.000000 104.000000 1568.000000
-289.000000 -8.000000 1440.000000
-289.000000 0.000000 1440.000000
-416.000000 -8.000000 1440.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-544.000000 104.000000 1568.000000
-417.000000 104.000000 1568.000000
-417.000000 96.000000 1568.000000
-417.000000 0.000000 1695.000000
-544.000000 96.000000 1568.000000
-544.000000 -8.000000 1695.000000
-544.000000 0.000000 1695.000000
-417.000000 -8.000000 1695.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-800.000000 104.000000 1695.000000
-672.000000 0.000000 1695.000000
-672.000000 0.000000 1569.000000
-800.000000 96.000000 1569.000000
-800.000000 104.000000 1569.000000
-672.000000 -8.000000 1695.000000
-672.000000 -8.000000 1569.000000
-800.000000 96.000000 1695.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-552.000000 96.000000 1696.000000
-544.000000 96.000000 1696.000000
-544.000000 96.000000 1576.000000
-552.000000 96.000000 1576.000000
-552.000000 0.000000 1696.000000
-544.000000 0.000000 1696.000000
-544.000000 0.000000 1576.000000
-552.000000 0.000000 1576.000000
faces
0.000000 0.000000 0.500000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-799.000000 96.000000 1695.000000
-672.000000 -8.000000 1688.000000
-799.000000 -8.000000 1688.000000
-799.000000 -8.000000 1695.000000
-672.000000 -8.000000 1695.000000
-799.000000 96.000000 1688.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 1 5 0x00000000
brush
vertices
-800.000000 96.000000 1696.000000
-792.000000 96.000000 1696.000000
-792.000000 96.000000 1576.000000
-800.000000 96.000000 1576.000000
-800.000000 0.000000 1696.000000
-792.000000 0.000000 1696.000000
-792.000000 0.000000 1576.000000
-800.000000 0.000000 1576.000000
faces
0.000000 0.000000 0.500000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 0.500000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-672.000000 0.000000 1695.000000
-544.000000 104.000000 1695.000000
-544.000000 104.000000 1569.000000
-672.000000 -8.000000 1695.000000
-672.000000 -8.000000 1569.000000
-544.000000 96.000000 1695.000000
-544.000000 96.000000 1569.000000
-672.000000 0.000000 1569.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 3 4 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 6 4 7 0x00000000
brush
vertices
-672.000000 -8.000000 1688.000000
-544.000000 96.000000 1695.000000
-544.000000 96.000000 1688.000000
-544.000000 -8.000000 1695.000000
-544.000000 -8.000000 1688.000000
-672.000000 -8.000000 1695.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000
brush
vertices
-800.000000 104.000000 1576.000000
-544.000000 104.000000 1576.000000
-544.000000 104.000000 1568.000000
-800.000000 104.000000 1568.000000
-800.000000 96.000000 1576.000000
-544.000000 96.000000 1576.000000
-544.000000 96.000000 1568.000000
-800.000000 96.000000 1568.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-296.000000 104.000000 1576.000000
-288.000000 104.000000 1576.000000
-288.000000 104.000000 1568.000000
-296.000000 104.000000 1568.000000
-296.000000 96.000000 1576.000000
-288.000000 96.000000 1576.000000
-288.000000 96.000000 1568.000000
-296.000000 96.000000 1568.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
384.000000 173.000000 1704.000000
428.000000 173.000000 1704.000000
428.000000 173.000000 1696.000000
384.000000 173.000000 1696.000000
384.000000 139.000000 1704.000000
428.000000 139.000000 1704.000000
428.000000 139.000000 1696.000000
384.000000 139.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
468.000000 173.000000 1704.000000
512.000000 173.000000 1704.000000
512.000000 173.000000 1696.000000
468.000000 173.000000 1696.000000
468.000000 139.000000 1704.000000
512.000000 139.000000 1704.000000
512.000000 139.000000 1696.000000
468.000000 139.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 173.000000 1704.000000
556.000000 173.000000 1704.000000
556.000000 173.000000 1696.000000
512.000000 173.000000 1696.000000
512.000000 139.000000 1704.000000
556.000000 139.000000 1704.000000
556.000000 139.000000 1696.000000
512.000000 139.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
596.000000 173.000000 1704.000000
640.000000 173.000000 1704.000000
640.000000 173.000000 1696.000000
596.000000 173.000000 1696.000000
596.000000 139.000000 1704.000000
640.000000 139.000000 1704.000000
640.000000 139.000000 1696.000000
596.000000 139.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
340.000000 173.000000 1704.000000
384.000000 173.000000 1704.000000
384.000000 173.000000 1696.000000
340.000000 173.000000 1696.000000
340.000000 139.000000 1704.000000
384.000000 139.000000 1704.000000
384.000000 139.000000 1696.000000
340.000000 139.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 173.000000 1704.000000
300.000000 173.000000 1704.000000
300.000000 173.000000 1696.000000
256.000000 173.000000 1696.000000
256.000000 139.000000 1704.000000
300.000000 139.000000 1704.000000
300.000000 139.000000 1696.000000
256.000000 139.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 173.000000 1748.000000
264.000000 173.000000 1748.000000
264.000000 173.000000 1704.000000
256.000000 173.000000 1704.000000
256.000000 139.000000 1748.000000
264.000000 139.000000 1748.000000
264.000000 139.000000 1704.000000
256.000000 139.000000 1704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 173.000000 1832.000000
264.000000 173.000000 1832.000000
264.000000 173.000000 1788.000000
256.000000 173.000000 1788.000000
256.000000 139.000000 1832.000000
264.000000 139.000000 1832.000000
264.000000 139.000000 1788.000000
256.000000 139.000000 1788.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
340.000000 69.000000 1704.000000
384.000000 69.000000 1704.000000
384.000000 69.000000 1696.000000
340.000000 69.000000 1696.000000
340.000000 35.000000 1704.000000
384.000000 35.000000 1704.000000
384.000000 35.000000 1696.000000
340.000000 35.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 69.000000 1704.000000
300.000000 69.000000 1704.000000
300.000000 69.000000 1696.000000
256.000000 69.000000 1696.000000
256.000000 35.000000 1704.000000
300.000000 35.000000 1704.000000
300.000000 35.000000 1696.000000
256.000000 35.000000 1696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
468.000000 69.000000 2080.000000
504.000000 69.000000 2080.000000
504.000000 69.000000 2072.000000
468.000000 69.000000 2072.000000
468.000000 35.000000 2080.000000
504.000000 35.000000 2080.000000
504.000000 35.000000 2072.000000
468.000000 35.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 69.000000 2080.000000
428.000000 69.000000 2080.000000
428.000000 69.000000 2072.000000
256.000000 69.000000 2072.000000
256.000000 35.000000 2080.000000
428.000000 35.000000 2080.000000
428.000000 35.000000 2072.000000
256.000000 35.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
468.000000 173.000000 2080.000000
504.000000 173.000000 2080.000000
504.000000 173.000000 2072.000000
468.000000 173.000000 2072.000000
468.000000 139.000000 2080.000000
504.000000 139.000000 2080.000000
504.000000 139.000000 2072.000000
468.000000 139.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 173.000000 2080.000000
428.000000 173.000000 2080.000000
428.000000 173.000000 2072.000000
256.000000 173.000000 2072.000000
256.000000 139.000000 2080.000000
428.000000 139.000000 2080.000000
428.000000 139.000000 2072.000000
256.000000 139.000000 2072.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
264.000000 69.000000 1192.000000
300.000000 69.000000 1192.000000
300.000000 69.000000 1184.000000
264.000000 69.000000 1184.000000
264.000000 35.000000 1192.000000
300.000000 35.000000 1192.000000
300.000000 35.000000 1184.000000
264.000000 35.000000 1184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
340.000000 69.000000 1192.000000
376.000000 69.000000 1192.000000
376.000000 69.000000 1184.000000
340.000000 69.000000 1184.000000
340.000000 35.000000 1192.000000
376.000000 35.000000 1192.000000
376.000000 35.000000 1184.000000
340.000000 35.000000 1184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-44.000000 69.000000 32.000000
-8.000000 69.000000 32.000000
-8.000000 69.000000 24.000000
-44.000000 69.000000 24.000000
-44.000000 35.000000 32.000000
-8.000000 35.000000 32.000000
-8.000000 35.000000 24.000000
-44.000000 35.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 69.000000 32.000000
-84.000000 69.000000 32.000000
-84.000000 69.000000 24.000000
-256.000000 69.000000 24.000000
-256.000000 35.000000 32.000000
-84.000000 35.000000 32.000000
-84.000000 35.000000 24.000000
-256.000000 35.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-44.000000 173.000000 32.000000
-8.000000 173.000000 32.000000
-8.000000 173.000000 24.000000
-44.000000 173.000000 24.000000
-44.000000 139.000000 32.000000
-8.000000 139.000000 32.000000
-8.000000 139.000000 24.000000
-44.000000 139.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 173.000000 32.000000
-84.000000 173.000000 32.000000
-84.000000 173.000000 24.000000
-256.000000 173.000000 24.000000
-256.000000 139.000000 32.000000
-84.000000 139.000000 32.000000
-84.000000 139.000000 24.000000
-256.000000 139.000000 24.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type PlayerSpawn
Vector3 position 32.000000 0.000000 -88.000000
Bool8 teamB 0
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position -682.000000 8.000000 1897.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 476.000000 0.000000 1791.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 564.000000 104.000000 2023.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
|
f5967651d40a621aa7ef547ef2c9f798cc0c203b | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Happy Birthday.sce | 42cbb8ec548384ec7b6446d339a59b49840403d0 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 105,120 | sce | Happy Birthday.sce | Name=Happy Birthday
PlayerCharacters=Birthday Player
BotCharacters=Candlelight.bot
IsChallenge=true
Timelimit=10.0
PlayerProfile=Birthday Player
AddedBots=Candlelight.bot;Candlelight.bot;Candlelight.bot;Candlelight.bot;Candlelight.bot;Candlelight.bot;Candlelight.bot;Candlelight.bot
PlayerMaxLives=0
BotMaxLives=1;1;1;1;1;1;1;1
PlayerTeam=1
BotTeams=2;2;2;2;2;2;2;2
MapName=happy_birthday.map
MapScale=1.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=0.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=1.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Fun
WeaponHeroTag=
DifficultyTag=1
AuthorsTag=pleasewait
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=true
Description=Blow out candles quickly.
GameVersion=1.0.7.2
ScorePerDistance=0.0
[Aim Profile]
Name=_
MinReactionTime=0.000001
MaxReactionTime=0.000001
MinSelfMovementCorrectionTime=0.000001
MaxSelfMovementCorrectionTime=0.000001
FlickFOV=90.0
FlickSpeed=10.0
FlickError=0.0
TrackSpeed=10.0
TrackError=0.0
MaxTurnAngleFromPadCenter=360.0
MinRecenterTime=0.0
MaxRecenterTime=0.0
OptimalAimFOV=360.0
OuterAimPenalty=0.0
MaxError=0.0
ShootFOV=90.0
VerticalAimOffset=0.0
MaxTolerableSpread=0.0
MinTolerableSpread=0.0
TolerableSpreadDist=100000.0
MaxSpreadDistFactor=1.0
[Bot Profile]
Name=Candlelight
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=60.0
DodgeProfileMinChangeTime=60.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=_;_;_;_;_;_;_;_
WeaponSwitchTime=60.0
UseWeapons=false
CharacterProfile=Candlelight
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Character Profile]
Name=Birthday Player
MaxHealth=1.0
WeaponProfileNames=Blow;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=0.0
CrouchHeightModifier=1.0
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=0.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=true
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=72.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Candlelight
MaxHealth=1.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=0.0
CrouchHeightModifier=1.0
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=0.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=1.000 Z=1.000
EnemyHeadColor=X=1.000 Y=0.000 Z=0.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=32.0
MainBBRadius=8.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=64.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=-16.0
[Weapon Profile]
Name=Blow
Type=Hitscan
ShotsPerClick=1
DamagePerShot=10.0
KnockbackFactor=0.0
TimeBetweenShots=0.1
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=1000000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=4
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=1000000.0
DamageFalloffStopDistance=1000000.0
DamageAtMaxRange=100.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.000001
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.1
HitSoundCooldown=0.1
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.0
AimPunchCooldown=0.0
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=4
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=90.0
ADSFOVScale=Vertical (1:1)
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=0.1
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,0.0,0.0
SpreadSCA=1.0,1.0,0.0,0.0
SpreadMSA=1.0,1.0,0.0,0.0
SpreadMCA=1.0,1.0,0.0,0.0
SpreadSSH=1.0,1.0,0.0,0.0
SpreadSCH=1.0,1.0,0.0,0.0
SpreadMSH=1.0,1.0,0.0,0.0
SpreadMCH=1.0,1.0,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.1
TimeToRecoilReset=0.1
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.0
AANeedsLOS=true
TrackHorizontal=false
TrackVertical=false
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=true
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.0
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
160.000000 176.000000 624.000000
352.000000 176.000000 624.000000
352.000000 128.000000 560.000000
352.000000 160.000000 624.000000
160.000000 128.000000 560.000000
160.000000 112.000000 560.000000
160.000000 160.000000 624.000000
352.000000 112.000000 560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
71.000000 216.000000 561.000000
73.000000 216.000000 561.000000
73.000000 216.000000 559.000000
71.000000 216.000000 559.000000
71.000000 208.000000 561.000000
73.000000 208.000000 561.000000
73.000000 208.000000 559.000000
71.000000 208.000000 559.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
71.000000 216.000000 729.000000
73.000000 216.000000 729.000000
73.000000 216.000000 727.000000
71.000000 216.000000 727.000000
71.000000 208.000000 729.000000
73.000000 208.000000 729.000000
73.000000 208.000000 727.000000
71.000000 208.000000 727.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
167.000000 216.000000 825.000000
169.000000 216.000000 825.000000
169.000000 216.000000 823.000000
167.000000 216.000000 823.000000
167.000000 208.000000 825.000000
169.000000 208.000000 825.000000
169.000000 208.000000 823.000000
167.000000 208.000000 823.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
343.000000 216.000000 825.000000
345.000000 216.000000 825.000000
345.000000 216.000000 823.000000
343.000000 216.000000 823.000000
343.000000 208.000000 825.000000
345.000000 208.000000 825.000000
345.000000 208.000000 823.000000
343.000000 208.000000 823.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
439.000000 216.000000 729.000000
441.000000 216.000000 729.000000
441.000000 216.000000 727.000000
439.000000 216.000000 727.000000
439.000000 208.000000 729.000000
441.000000 208.000000 729.000000
441.000000 208.000000 727.000000
439.000000 208.000000 727.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
439.000000 216.000000 561.000000
441.000000 216.000000 561.000000
441.000000 216.000000 559.000000
439.000000 216.000000 559.000000
439.000000 208.000000 561.000000
441.000000 208.000000 561.000000
441.000000 208.000000 559.000000
439.000000 208.000000 559.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
343.000000 216.000000 473.000000
345.000000 216.000000 473.000000
345.000000 216.000000 471.000000
343.000000 216.000000 471.000000
343.000000 208.000000 473.000000
345.000000 208.000000 473.000000
345.000000 208.000000 471.000000
343.000000 208.000000 471.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
167.000000 216.000000 473.000000
169.000000 216.000000 473.000000
169.000000 216.000000 471.000000
167.000000 216.000000 471.000000
167.000000 208.000000 473.000000
169.000000 208.000000 473.000000
169.000000 208.000000 471.000000
167.000000 208.000000 471.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
128.000000 256.000000 320.000000
384.000000 256.000000 320.000000
384.000000 256.000000 192.000000
128.000000 256.000000 192.000000
128.000000 240.000000 320.000000
384.000000 240.000000 320.000000
384.000000 240.000000 192.000000
128.000000 240.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
64.000000 112.000000 560.000000
66.000000 112.000000 554.000000
66.000000 208.000000 554.000000
72.000000 112.000000 560.000000
72.000000 208.000000 560.000000
64.000000 208.000000 560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
66.000000 112.000000 554.000000
72.000000 112.000000 552.000000
72.000000 208.000000 552.000000
72.000000 112.000000 560.000000
72.000000 208.000000 560.000000
66.000000 208.000000 554.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
72.000000 112.000000 552.000000
77.999969 112.000000 554.000000
77.999969 208.000000 554.000000
72.000000 112.000000 560.000061
72.000000 208.000000 560.000061
72.000000 208.000000 552.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
77.999969 112.000000 554.000000
79.999969 112.000000 560.000000
79.999969 208.000000 560.000000
72.000000 112.000000 560.000000
72.000000 208.000000 560.000000
77.999969 208.000000 554.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
80.000000 112.000000 560.000000
77.999969 112.000000 566.000000
77.999969 208.000000 566.000000
71.999908 112.000000 560.000000
71.999908 208.000000 560.000000
80.000000 208.000000 560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
77.999969 112.000000 566.000000
71.999939 112.000000 568.000000
71.999939 208.000000 568.000000
71.999908 112.000000 560.000061
71.999908 208.000000 560.000061
77.999969 208.000000 566.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
72.000000 112.000000 568.000000
66.000031 112.000000 566.000000
66.000031 208.000000 566.000000
71.999939 112.000000 559.999939
71.999939 208.000000 559.999939
72.000000 208.000000 568.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
66.000031 112.000000 566.000000
63.999969 112.000000 560.000000
63.999969 208.000000 560.000000
71.999939 112.000000 560.000000
71.999939 208.000000 560.000000
66.000031 208.000000 566.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
64.000000 112.000000 728.000000
66.000000 112.000000 722.000000
66.000000 208.000000 722.000000
72.000000 112.000000 728.000000
72.000000 208.000000 728.000000
64.000000 208.000000 728.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
66.000000 112.000000 722.000000
72.000000 112.000000 720.000000
72.000000 208.000000 720.000000
72.000000 112.000000 728.000000
72.000000 208.000000 728.000000
66.000000 208.000000 722.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
72.000000 112.000000 720.000000
77.999969 112.000000 722.000000
77.999969 208.000000 722.000000
72.000000 112.000000 728.000061
72.000000 208.000000 728.000061
72.000000 208.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
66.000031 112.000000 734.000000
63.999969 112.000000 728.000000
63.999969 208.000000 728.000000
71.999939 112.000000 727.999939
71.999939 208.000000 727.999939
66.000031 208.000000 734.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
80.000000 112.000000 728.000000
77.999969 112.000000 734.000000
77.999969 208.000000 734.000000
71.999908 112.000000 728.000000
71.999908 208.000000 728.000000
80.000000 208.000000 728.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
77.999969 112.000000 734.000000
71.999939 112.000000 736.000000
71.999939 208.000000 736.000000
71.999908 112.000000 728.000000
71.999908 208.000000 728.000000
77.999969 208.000000 734.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
72.000000 112.000000 736.000000
66.000031 112.000000 734.000000
66.000031 208.000000 734.000000
71.999939 112.000000 727.999939
71.999939 208.000000 727.999939
72.000000 208.000000 736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
77.999969 112.000000 722.000000
79.999969 112.000000 728.000000
79.999969 208.000000 728.000000
72.000000 112.000000 728.000061
72.000000 208.000000 728.000061
77.999969 208.000000 722.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
160.000000 112.000000 824.000000
162.000000 112.000000 818.000000
162.000000 208.000000 818.000000
168.000000 112.000000 824.000000
168.000000 208.000000 824.000000
160.000000 208.000000 824.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
162.000000 112.000000 818.000000
168.000000 112.000000 816.000000
168.000000 208.000000 816.000000
168.000000 112.000000 824.000000
168.000000 208.000000 824.000000
162.000000 208.000000 818.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
168.000000 112.000000 816.000000
173.999969 112.000000 818.000000
173.999969 208.000000 818.000000
168.000000 112.000000 824.000061
168.000000 208.000000 824.000061
168.000000 208.000000 816.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
162.000031 112.000000 830.000000
159.999969 112.000000 824.000000
159.999969 208.000000 824.000000
167.999939 112.000000 823.999939
167.999939 208.000000 823.999939
162.000031 208.000000 830.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
176.000000 112.000000 824.000000
173.999969 112.000000 830.000000
173.999969 208.000000 830.000000
167.999908 112.000000 824.000000
167.999908 208.000000 824.000000
176.000000 208.000000 824.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
173.999969 112.000000 830.000000
167.999939 112.000000 832.000000
167.999939 208.000000 832.000000
167.999908 112.000000 824.000000
167.999908 208.000000 824.000000
173.999969 208.000000 830.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
168.000000 112.000000 832.000000
162.000031 112.000000 830.000000
162.000031 208.000000 830.000000
167.999939 112.000000 823.999939
167.999939 208.000000 823.999939
168.000000 208.000000 832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
173.999969 112.000000 818.000000
175.999969 112.000000 824.000000
175.999969 208.000000 824.000000
168.000000 112.000000 824.000061
168.000000 208.000000 824.000061
173.999969 208.000000 818.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
336.000000 112.000000 824.000000
338.000000 112.000000 818.000000
338.000000 208.000000 818.000000
344.000000 112.000000 824.000000
344.000000 208.000000 824.000000
336.000000 208.000000 824.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
338.000000 112.000000 818.000000
344.000000 112.000000 816.000000
344.000000 208.000000 816.000000
344.000000 112.000000 824.000000
344.000000 208.000000 824.000000
338.000000 208.000000 818.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
349.999969 112.000000 818.000000
351.999969 112.000000 824.000000
351.999969 208.000000 824.000000
344.000000 112.000000 824.000061
344.000000 208.000000 824.000061
349.999969 208.000000 818.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
338.000031 112.000000 830.000000
335.999969 112.000000 824.000000
335.999969 208.000000 824.000000
343.999939 112.000000 823.999939
343.999939 208.000000 823.999939
338.000031 208.000000 830.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
352.000000 112.000000 824.000000
349.999969 112.000000 830.000000
349.999969 208.000000 830.000000
343.999908 112.000000 824.000000
343.999908 208.000000 824.000000
352.000000 208.000000 824.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
349.999969 112.000000 830.000000
343.999939 112.000000 832.000000
343.999939 208.000000 832.000000
343.999908 112.000000 824.000000
343.999908 208.000000 824.000000
349.999969 208.000000 830.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
344.000000 112.000000 832.000000
338.000031 112.000000 830.000000
338.000031 208.000000 830.000000
343.999939 112.000000 823.999939
343.999939 208.000000 823.999939
344.000000 208.000000 832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
344.000000 112.000000 816.000000
349.999969 112.000000 818.000000
349.999969 208.000000 818.000000
344.000000 112.000000 824.000061
344.000000 208.000000 824.000061
344.000000 208.000000 816.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
432.000000 112.000000 728.000000
434.000000 112.000000 722.000000
434.000000 208.000000 722.000000
440.000000 112.000000 728.000000
440.000000 208.000000 728.000000
432.000000 208.000000 728.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
434.000000 112.000000 722.000000
440.000000 112.000000 720.000000
440.000000 208.000000 720.000000
440.000000 112.000000 728.000000
440.000000 208.000000 728.000000
434.000000 208.000000 722.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
445.999969 112.000000 722.000000
447.999969 112.000000 728.000000
447.999969 208.000000 728.000000
440.000000 112.000000 728.000061
440.000000 208.000000 728.000061
445.999969 208.000000 722.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
434.000031 112.000000 734.000000
431.999969 112.000000 728.000000
431.999969 208.000000 728.000000
439.999939 112.000000 727.999939
439.999939 208.000000 727.999939
434.000031 208.000000 734.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
448.000000 112.000000 728.000000
445.999969 112.000000 734.000000
445.999969 208.000000 734.000000
439.999908 112.000000 728.000000
439.999908 208.000000 728.000000
448.000000 208.000000 728.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
445.999969 112.000000 734.000000
439.999939 112.000000 736.000000
439.999939 208.000000 736.000000
439.999908 112.000000 728.000000
439.999908 208.000000 728.000000
445.999969 208.000000 734.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
440.000000 112.000000 736.000000
434.000031 112.000000 734.000000
434.000031 208.000000 734.000000
439.999939 112.000000 727.999939
439.999939 208.000000 727.999939
440.000000 208.000000 736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
440.000000 112.000000 720.000000
445.999969 112.000000 722.000000
445.999969 208.000000 722.000000
440.000000 112.000000 728.000061
440.000000 208.000000 728.000061
440.000000 208.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
432.000000 112.000000 560.000000
434.000000 112.000000 554.000000
434.000000 208.000000 554.000000
440.000000 112.000000 560.000000
440.000000 208.000000 560.000000
432.000000 208.000000 560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
434.000000 112.000000 554.000000
440.000000 112.000000 552.000000
440.000000 208.000000 552.000000
440.000000 112.000000 560.000000
440.000000 208.000000 560.000000
434.000000 208.000000 554.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
445.999969 112.000000 554.000000
447.999969 112.000000 560.000000
447.999969 208.000000 560.000000
440.000000 112.000000 560.000061
440.000000 208.000000 560.000061
445.999969 208.000000 554.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
434.000031 112.000000 566.000000
431.999969 112.000000 560.000000
431.999969 208.000000 560.000000
439.999939 112.000000 559.999939
439.999939 208.000000 559.999939
434.000031 208.000000 566.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
448.000000 112.000000 560.000000
445.999969 112.000000 566.000000
445.999969 208.000000 566.000000
439.999908 112.000000 560.000000
439.999908 208.000000 560.000000
448.000000 208.000000 560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
445.999969 112.000000 566.000000
439.999939 112.000000 568.000000
439.999939 208.000000 568.000000
439.999908 112.000000 560.000000
439.999908 208.000000 560.000000
445.999969 208.000000 566.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
440.000000 112.000000 568.000000
434.000031 112.000000 566.000000
434.000031 208.000000 566.000000
439.999939 112.000000 559.999939
439.999939 208.000000 559.999939
440.000000 208.000000 568.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
440.000000 112.000000 552.000000
445.999969 112.000000 554.000000
445.999969 208.000000 554.000000
440.000000 112.000000 560.000061
440.000000 208.000000 560.000061
440.000000 208.000000 552.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
336.000000 112.000000 472.000000
338.000000 112.000000 466.000000
338.000000 208.000000 466.000000
344.000000 112.000000 472.000000
344.000000 208.000000 472.000000
336.000000 208.000000 472.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
338.000000 112.000000 466.000000
344.000000 112.000000 464.000000
344.000000 208.000000 464.000000
344.000000 112.000000 472.000000
344.000000 208.000000 472.000000
338.000000 208.000000 466.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
349.999969 112.000000 466.000000
351.999969 112.000000 472.000000
351.999969 208.000000 472.000000
344.000000 112.000000 472.000061
344.000000 208.000000 472.000061
349.999969 208.000000 466.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
338.000031 112.000000 478.000000
335.999969 112.000000 472.000000
335.999969 208.000000 472.000000
343.999939 112.000000 471.999939
343.999939 208.000000 471.999939
338.000031 208.000000 478.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
352.000000 112.000000 472.000000
349.999969 112.000000 478.000000
349.999969 208.000000 478.000000
343.999908 112.000000 472.000000
343.999908 208.000000 472.000000
352.000000 208.000000 472.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
349.999969 112.000000 478.000000
343.999939 112.000000 480.000000
343.999939 208.000000 480.000000
343.999908 112.000000 472.000000
343.999908 208.000000 472.000000
349.999969 208.000000 478.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
344.000000 112.000000 480.000000
338.000031 112.000000 478.000000
338.000031 208.000000 478.000000
343.999939 112.000000 471.999939
343.999939 208.000000 471.999939
344.000000 208.000000 480.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
344.000000 112.000000 464.000000
349.999969 112.000000 466.000000
349.999969 208.000000 466.000000
344.000000 112.000000 472.000061
344.000000 208.000000 472.000061
344.000000 208.000000 464.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
160.000000 112.000000 472.000000
162.000000 112.000000 466.000000
162.000000 208.000000 466.000000
168.000000 112.000000 472.000000
168.000000 208.000000 472.000000
160.000000 208.000000 472.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
162.000000 112.000000 466.000000
168.000000 112.000000 464.000000
168.000000 208.000000 464.000000
168.000000 112.000000 472.000000
168.000000 208.000000 472.000000
162.000000 208.000000 466.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
173.999969 112.000000 466.000000
175.999969 112.000000 472.000000
175.999969 208.000000 472.000000
168.000000 112.000000 472.000061
168.000000 208.000000 472.000061
173.999969 208.000000 466.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
162.000031 112.000000 478.000000
159.999969 112.000000 472.000000
159.999969 208.000000 472.000000
167.999939 112.000000 471.999939
167.999939 208.000000 471.999939
162.000031 208.000000 478.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
176.000000 112.000000 472.000000
173.999969 112.000000 478.000000
173.999969 208.000000 478.000000
167.999908 112.000000 472.000000
167.999908 208.000000 472.000000
176.000000 208.000000 472.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
173.999969 112.000000 478.000000
167.999939 112.000000 480.000000
167.999939 208.000000 480.000000
167.999908 112.000000 472.000000
167.999908 208.000000 472.000000
173.999969 208.000000 478.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
168.000000 112.000000 480.000000
162.000031 112.000000 478.000000
162.000031 208.000000 478.000000
167.999939 112.000000 471.999939
167.999939 208.000000 471.999939
168.000000 208.000000 480.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
168.000000 112.000000 464.000000
173.999969 112.000000 466.000000
173.999969 208.000000 466.000000
168.000000 112.000000 472.000061
168.000000 208.000000 472.000061
168.000000 208.000000 464.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
32.000000 112.000000 648.000000
38.000000 112.000000 630.000000
56.000000 144.000000 648.000000
56.000000 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
38.000000 112.000000 630.000000
56.000000 112.000000 624.000000
56.000000 144.000000 648.000000
56.000000 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
56.000000 112.000000 624.000000
74.000031 112.000000 630.000000
56.000000 144.000000 648.000000
56.000000 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
74.000031 112.000000 630.000000
80.000000 112.000000 648.000000
56.000000 144.000000 648.000000
56.000000 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
80.000000 112.000000 648.000000
74.000000 112.000000 666.000000
56.000061 144.000000 648.000061
56.000061 112.000000 648.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
74.000000 112.000000 666.000000
56.000031 112.000000 672.000000
56.000061 144.000000 648.000061
56.000061 112.000000 648.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
56.000000 112.000000 672.000000
38.000031 112.000000 666.000000
55.999939 144.000000 648.000000
55.999939 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
38.000031 112.000000 666.000000
32.000000 112.000000 648.000000
55.999939 144.000000 648.000000
55.999939 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
432.000000 112.000000 648.000000
438.000000 112.000000 630.000000
456.000000 144.000000 648.000000
456.000000 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
438.000000 112.000000 630.000000
456.000000 112.000000 624.000000
456.000000 144.000000 648.000000
456.000000 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
456.000000 112.000000 624.000000
474.000031 112.000000 630.000000
456.000000 144.000000 648.000000
456.000000 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
474.000031 112.000000 630.000000
480.000000 112.000000 648.000000
456.000000 144.000000 648.000000
456.000000 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
480.000000 112.000000 648.000000
474.000000 112.000000 666.000000
456.000061 144.000000 648.000061
456.000061 112.000000 648.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
474.000000 112.000000 666.000000
456.000031 112.000000 672.000000
456.000061 144.000000 648.000061
456.000061 112.000000 648.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
456.000000 112.000000 672.000000
438.000031 112.000000 666.000000
455.999939 144.000000 648.000000
455.999939 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
438.000031 112.000000 666.000000
432.000000 112.000000 648.000000
455.999939 144.000000 648.000000
455.999939 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
232.000000 112.000000 448.000000
238.000000 112.000000 430.000000
256.000000 144.000000 448.000000
256.000000 112.000000 448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
238.000000 112.000000 430.000000
256.000000 112.000000 424.000000
256.000000 144.000000 448.000000
256.000000 112.000000 448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
256.000000 112.000000 424.000000
274.000000 112.000000 430.000000
256.000000 144.000000 448.000000
256.000000 112.000000 448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
274.000031 112.000000 430.000000
280.000000 112.000000 448.000000
256.000031 144.000000 448.000000
256.000031 112.000000 448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
280.000000 112.000000 448.000000
274.000000 112.000000 466.000000
256.000000 144.000000 448.000000
256.000000 112.000000 448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
274.000000 112.000000 466.000000
256.000000 112.000000 472.000000
256.000000 144.000000 448.000000
256.000000 112.000000 448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
256.000000 112.000000 472.000000
238.000000 112.000000 466.000000
256.000000 144.000000 448.000000
256.000000 112.000000 448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
238.000031 112.000000 466.000000
232.000031 112.000000 448.000000
256.000000 144.000000 448.000000
256.000000 112.000000 448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
232.000000 112.000000 848.000000
238.000000 112.000000 830.000000
256.000000 144.000000 848.000000
256.000000 112.000000 848.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
238.000000 112.000000 830.000000
256.000000 112.000000 824.000000
256.000000 144.000000 848.000000
256.000000 112.000000 848.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
256.000000 112.000000 824.000000
274.000031 112.000000 830.000000
256.000000 144.000000 848.000000
256.000000 112.000000 848.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
274.000031 112.000000 830.000000
280.000000 112.000000 848.000000
256.000000 144.000000 848.000000
256.000000 112.000000 848.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
280.000000 112.000000 848.000000
274.000000 112.000000 866.000000
256.000061 144.000000 848.000061
256.000061 112.000000 848.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
274.000000 112.000000 866.000000
256.000031 112.000000 872.000000
256.000061 144.000000 848.000061
256.000061 112.000000 848.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
256.000000 112.000000 872.000000
238.000031 112.000000 866.000000
255.999939 144.000000 848.000000
255.999939 112.000000 848.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
238.000031 112.000000 866.000000
232.000000 112.000000 848.000000
255.999939 144.000000 848.000000
255.999939 112.000000 848.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
92.000000 112.000000 804.000000
83.514679 112.000000 787.029419
108.970581 144.000000 787.029419
108.970581 112.000000 787.029419
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
83.514679 112.000000 787.029419
92.000000 112.000000 770.058838
108.970581 144.000000 787.029419
108.970581 112.000000 787.029419
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
92.000000 112.000000 770.058838
108.970581 112.000000 761.573547
108.970581 144.000000 787.029419
108.970581 112.000000 787.029419
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
108.970581 112.000000 761.573547
125.941132 112.000000 770.058838
108.970581 144.000000 787.029419
108.970581 112.000000 787.029419
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
125.941132 112.000000 770.058838
134.426361 112.000000 787.029419
108.970612 144.000000 787.029419
108.970612 112.000000 787.029419
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
134.426361 112.000000 787.029419
125.941132 112.000000 804.000000
108.970612 144.000000 787.029419
108.970612 112.000000 787.029419
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
125.941132 112.000000 804.000000
108.970581 112.000000 812.485229
108.970520 144.000000 787.029480
108.970520 112.000000 787.029480
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
108.970581 112.000000 812.485229
92.000000 112.000000 804.000000
108.970520 144.000000 787.029480
108.970520 112.000000 787.029480
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
84.000031 112.000000 510.000000
92.485199 112.000000 493.029419
109.455719 144.000000 509.999939
109.455719 112.000000 509.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
92.485199 112.000000 493.029419
109.455841 112.000000 484.544128
109.455811 144.000000 510.000000
109.455811 112.000000 510.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
109.455841 112.000000 484.544128
126.426422 112.000000 493.029419
109.455811 144.000000 510.000000
109.455811 112.000000 510.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
126.426422 112.000000 493.029419
134.911713 112.000000 510.000000
109.455811 144.000000 510.000000
109.455811 112.000000 510.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
134.911713 112.000000 510.000000
126.426361 112.000000 526.970520
109.455811 144.000000 510.000000
109.455811 112.000000 510.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
126.426361 112.000000 526.970520
109.455811 112.000000 535.455811
109.455841 144.000000 510.000122
109.455841 112.000000 510.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
109.455811 112.000000 535.455811
92.485260 112.000000 526.970581
109.455841 144.000000 510.000122
109.455841 112.000000 510.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
92.485260 112.000000 526.970520
84.000031 112.000000 510.000000
109.455719 144.000000 509.999939
109.455719 112.000000 509.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
378.000000 112.000000 788.000000
386.485260 112.000000 771.029358
403.455780 144.000000 787.999939
403.455780 112.000000 787.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
386.485260 112.000000 771.029358
403.455811 112.000000 762.544128
403.455811 144.000000 787.999939
403.455811 112.000000 787.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
403.455811 112.000000 762.544128
420.426361 112.000000 771.029358
403.455811 144.000000 787.999939
403.455811 112.000000 787.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
420.426361 112.000000 771.029358
428.911682 112.000000 788.000000
403.455811 144.000000 787.999939
403.455811 112.000000 787.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
428.911682 112.000000 788.000000
420.426392 112.000000 804.970520
403.455811 144.000000 787.999939
403.455811 112.000000 787.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
420.426392 112.000000 804.970520
403.455811 112.000000 813.455811
403.455811 144.000000 788.000061
403.455811 112.000000 788.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
403.455811 112.000000 813.455811
386.485260 112.000000 804.970520
403.455811 144.000000 788.000061
403.455811 112.000000 788.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
386.485229 112.000000 804.970520
378.000000 112.000000 788.000000
403.455780 144.000000 787.999939
403.455780 112.000000 787.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
402.000000 112.000000 534.000000
385.029419 112.000000 525.514771
401.999878 144.000000 508.544250
401.999878 112.000000 508.544250
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
385.029419 112.000000 525.514771
376.544067 112.000000 508.544250
401.999939 144.000000 508.544312
401.999939 112.000000 508.544312
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
376.544067 112.000000 508.544250
385.029358 112.000000 491.573608
401.999939 144.000000 508.544312
401.999939 112.000000 508.544312
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
385.029358 112.000000 491.573608
402.000000 112.000000 483.088318
401.999939 144.000000 508.544312
401.999939 112.000000 508.544312
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
402.000000 112.000000 483.088318
418.970581 112.000000 491.573608
401.999939 144.000000 508.544312
401.999939 112.000000 508.544312
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
418.970581 112.000000 491.573608
427.455688 112.000000 508.544250
402.000000 144.000000 508.544250
402.000000 112.000000 508.544250
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
427.455688 112.000000 508.544250
418.970581 112.000000 525.514771
402.000000 144.000000 508.544250
402.000000 112.000000 508.544250
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
418.970459 112.000000 525.514771
402.000000 112.000000 534.000000
401.999878 144.000000 508.544250
401.999878 112.000000 508.544250
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
brush
vertices
100.000000 -16.000000 428.000000
144.000000 -16.000000 408.000000
144.000000 112.000000 408.000000
256.000000 -16.000000 648.000000
256.000000 112.000000 648.000000
100.000000 112.000000 428.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
64.000000 -16.000000 456.000000
100.000000 -16.000000 428.000000
100.000000 112.000000 428.000000
256.000000 -16.000000 648.000000
256.000000 112.000000 648.000000
64.000000 112.000000 456.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
36.000000 -16.000000 492.000000
64.000000 -16.000000 456.000000
64.000000 112.000000 456.000000
256.000000 -16.000000 648.000000
256.000000 112.000000 648.000000
36.000000 112.000000 492.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
16.000000 -16.000000 536.000000
36.000000 -16.000000 492.000000
36.000000 112.000000 492.000000
256.000000 -16.000000 648.000000
256.000000 112.000000 648.000000
16.000000 112.000000 536.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
4.000000 -16.000000 588.000000
16.000000 -16.000000 536.000000
16.000000 112.000000 536.000000
256.000000 -16.000000 648.000000
256.000000 112.000000 648.000000
4.000000 112.000000 588.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
0.000000 -16.000000 648.000000
4.000000 -16.000000 588.000000
4.000000 112.000000 588.000000
256.000000 -16.000000 648.000000
256.000000 112.000000 648.000000
0.000000 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
4.000000 -16.000000 708.000000
0.000000 -16.000000 648.000000
0.000000 112.000000 648.000000
256.000122 -16.000000 648.000183
256.000122 112.000000 648.000183
4.000000 112.000000 708.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
16.000122 -16.000000 760.000000
4.000000 -16.000000 708.000000
4.000000 112.000000 708.000000
256.000122 -16.000000 648.000183
256.000122 112.000000 648.000183
16.000122 112.000000 760.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
36.000061 -16.000000 804.000061
16.000122 -16.000000 760.000000
16.000122 112.000000 760.000000
256.000122 -16.000000 648.000183
256.000122 112.000000 648.000183
36.000061 112.000000 804.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
64.000122 -16.000000 840.000000
36.000061 -16.000000 804.000061
36.000061 112.000000 804.000061
256.000122 -16.000000 648.000183
256.000122 112.000000 648.000183
64.000122 112.000000 840.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
99.999939 -15.999992 868.000061
64.000122 -15.999992 840.000000
64.000122 112.000000 840.000000
256.000122 -15.999992 648.000183
256.000122 112.000000 648.000183
99.999939 112.000000 868.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
144.000061 -16.000000 888.000061
99.999939 -16.000000 868.000061
99.999939 112.000000 868.000061
256.000122 -16.000000 648.000183
256.000122 112.000000 648.000183
144.000061 112.000000 888.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
196.000061 -15.999992 900.000061
144.000061 -15.999992 888.000061
144.000061 112.000000 888.000061
256.000122 -15.999992 648.000183
256.000122 112.000000 648.000183
196.000061 112.000000 900.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
256.000000 -15.999992 904.000000
196.000061 -15.999992 900.000061
196.000061 112.000000 900.000061
256.000122 -15.999992 648.000183
256.000122 112.000000 648.000183
256.000000 112.000000 904.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
315.999939 -16.000000 900.000000
255.999939 -16.000000 904.000000
255.999939 112.000000 904.000000
256.000122 -16.000000 647.999939
256.000122 112.000000 647.999939
315.999939 112.000000 900.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
368.000000 -16.000000 887.999939
315.999939 -16.000000 900.000000
315.999939 112.000000 900.000000
256.000122 -16.000000 647.999939
256.000122 112.000000 647.999939
368.000000 112.000000 887.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
412.000000 -15.999992 868.000000
368.000000 -15.999992 887.999939
368.000000 112.000000 887.999939
256.000122 -15.999992 647.999939
256.000122 112.000000 647.999939
412.000000 112.000000 868.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
448.000000 -15.999992 840.000000
412.000000 -15.999992 868.000000
412.000000 112.000000 868.000000
256.000122 -15.999992 647.999939
256.000122 112.000000 647.999939
448.000000 112.000000 840.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
476.000061 -16.000000 804.000122
448.000000 -16.000000 840.000000
448.000000 112.000000 840.000000
256.000122 -16.000000 647.999939
256.000122 112.000000 647.999939
476.000061 112.000000 804.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
496.000061 -15.999992 760.000000
476.000061 -15.999992 804.000122
476.000061 112.000000 804.000122
256.000122 -15.999992 647.999939
256.000122 112.000000 647.999939
496.000061 112.000000 760.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
508.000061 -15.999992 708.000000
496.000061 -15.999992 760.000000
496.000061 112.000000 760.000000
256.000122 -15.999992 647.999939
256.000122 112.000000 647.999939
508.000061 112.000000 708.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
512.000000 -16.000000 648.000000
508.000061 -16.000000 708.000000
508.000061 112.000000 708.000000
256.000122 -16.000000 647.999939
256.000122 112.000000 647.999939
512.000000 112.000000 648.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
508.000000 -15.999992 587.999939
512.000000 -15.999992 648.000000
512.000000 112.000000 648.000000
256.000000 -15.999992 647.999878
256.000000 112.000000 647.999878
508.000000 112.000000 587.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
496.000000 -16.000000 535.999939
508.000000 -16.000000 587.999939
508.000000 112.000000 587.999939
256.000000 -16.000000 647.999878
256.000000 112.000000 647.999878
496.000000 112.000000 535.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
476.000000 -16.000000 491.999939
496.000000 -16.000000 535.999939
496.000000 112.000000 535.999939
256.000000 -16.000000 647.999878
256.000000 112.000000 647.999878
476.000000 112.000000 491.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
448.000000 -15.999992 455.999939
476.000000 -15.999992 491.999939
476.000000 112.000000 491.999939
256.000000 -15.999992 647.999878
256.000000 112.000000 647.999878
448.000000 112.000000 455.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
412.000122 -16.000000 427.999878
448.000000 -16.000000 455.999939
448.000000 112.000000 455.999939
256.000000 -16.000000 647.999878
256.000000 112.000000 647.999878
412.000122 112.000000 427.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
368.000000 -16.000000 407.999878
412.000122 -16.000000 427.999878
412.000122 112.000000 427.999878
256.000000 -16.000000 647.999878
256.000000 112.000000 647.999878
368.000000 112.000000 407.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
316.000000 -16.000000 395.999939
368.000000 -16.000000 407.999878
368.000000 112.000000 407.999878
256.000000 -16.000000 647.999878
256.000000 112.000000 647.999878
316.000000 112.000000 395.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
196.000000 -16.000000 396.000000
256.000000 -16.000000 392.000000
256.000000 112.000000 392.000000
256.000000 -16.000000 648.000000
256.000000 112.000000 648.000000
196.000000 112.000000 396.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
144.000000 -16.000000 408.000000
196.000000 -16.000000 396.000000
196.000000 112.000000 396.000000
256.000000 -16.000000 648.000000
256.000000 112.000000 648.000000
144.000000 112.000000 408.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
256.000000 -16.000000 392.000000
316.000000 -16.000000 395.999939
316.000000 112.000000 395.999939
256.000000 -16.000000 647.999878
256.000000 112.000000 647.999878
256.000000 112.000000 392.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 256.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 72.000000 216.000000 560.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 72.000000 216.000000 728.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 440.000000 216.000000 560.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 440.000000 216.000000 728.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 168.000000 216.000000 472.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 344.000000 216.000000 472.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 168.000000 216.000000 824.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 344.000000 216.000000 824.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
487f36dfa15360e4c44371c8b3f9c88f021cd5dc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH1/EX1.4/Ex1_4.sce | ca32073343052fb3a861d799ce9386dd0ada2ef6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 200 | sce | Ex1_4.sce | //Example 1_4
clc();
clear;
//To calculate the Volume
r=3*10^-5 //units in meters
L=0.20 //units in meters
V=%pi*r^2*L //Units in meter^3
printf("Volume V=")
disp(V)
printf("Meter^3")
|
d323e0734ea42344d78811c4fb60a09f0a2c22c3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1931/CH10/EX10.11/11.sce | 2f7194aa4c5a77fb80b653964fad6ff026ea8ec9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 456 | sce | 11.sce | clc
clear
//INPUT DATA
Eg1=0.36//The energy gap of intrinsic semiconductor A in eV
Eg2=0.72//The energy gap of intrinsic semiconductor B in eV
T1=300//Temperature of semiconductor A in K
T2=300//Temperature of semiconductor B in K
m=9.11*10^-31//mass of an electron in Kg
KT=0.026//kt in eV
//CALCULATION
x=(exp((Eg2-Eg1)/(2*KT)))//The intrinsic carrier density of A to B
//OUTPUT
printf('The intrinsic carrier density of A to B is %i',x)
|
27a57230ff3a905833c202bf3092421a34b8db7a | 449d555969bfd7befe906877abab098c6e63a0e8 | /632/CH4/EX4.14/example4_14.sce | 0d4e2b1fc8627f6e3990b2a5bffcc30381790153 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 631 | sce | example4_14.sce | //clc()
// CO2 = CO + 1/2 * O2
P1 = 1;//bar
T1 = 3500;//K
P2 = 1;//bar
T2 = 300;//K
V2 = 25;//L
V1 = V2 * P2 * T1 / ( P1 * T2 );
disp("L",V1,"(a)Final volume of gas if no dissociation occured = ")
Pstp = 1.01325;//bar
Tstp = 273;//K
Vstp = 22.4143;//m^3
N2 = V2 * P2 * Tstp / ( Vstp * Pstp * T2);
// let x be the fraction dissociated, then after dissociation,
// CO2 = (1 - x)mol, CO = xmol, O2 = (0.5*x)mol
//total moles = 1 - x + x + o.5 * x = 1 + 0.5 * x
V = 350;//L
N1 = V * P1 * Tstp / (Vstp * Pstp * T1);
// 1 + 0.5 * x = N1, therefore
x = (N1 - 1) / 0.5 ;
p = x*100;
disp("%",p,"(b)CO2 converted = ")
|
19509680f9e71f86669bcb0a2406a9ff0249c4c9 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set12/s_Industrial_Instrumentation_K._Krishnaswamy_And_S._Vijayachitra_1436.zip/Industrial_Instrumentation_K._Krishnaswamy_And_S._Vijayachitra_1436/CH3/EX3.9/ex3_9.sce | e5cee65227cfcd5b920bbab6e0dc141c4774a51f | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 145 | sce | ex3_9.sce | errcatch(-1,"stop");mode(2);// Example 3.9, page no-167
rpm=1500
f=200
N=60*f/rpm
printf("No of teeth on the wheel\nN=%d",N)
exit();
|
26e30259996c829f4cdec18ce636027c8d16cb89 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH19/EX19.11/Ex19_11.sce | 2dc08e48cecd52195f25298e27676496ad7600bc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,764 | sce | Ex19_11.sce | //Variable declaration:
h1 = 800 //Heat transfer coefficient for steam condensing inside coil (Btu/h.ft^2. F)
h2 = 40 //Heat transfer coefficient for oil outside coil (Btu/h.ft^2. F)
h3 = 40 //Heat transfer coefficient for oil inside tank wal (Btu/h.ft^2. F)
h4 = 2 //Heat transfer coefficient for outer tank wall to ambient air (Btu/h.ft^2. F)
k1 = 0.039 //Thermal conductivity of insulation layer (Btu/h.ft. F)
l1 = 2/12 //Thickness of insulation layer (ft)
D = 10 //Diameter of tank (ft)
H = 30 //Height of tank (ft)
k2 = 224 //Thermal conductivity of copper tube (Btu/h.ft. F)
l2 = (3/4)/12 //Thickness of insulation layer (ft)
T1 = 120 //Temperature of tank ( F)
T2 = 5 //Outdoor temperature ( F)
//Calculation:
Uo1 = 1/(1/h3+(l1/k1)+1/h4) //Overall heat transfer coefficient for tank (Btu/h.ft^2. F)
At = %pi*(D+2*l1)*H //Surface area of tank (ft^2)
Q = Uo1*At*(T1-T2) //Heat transfer rate lost from the tank (Btu/h)
//From table 6.3:
l2 = 0.049/12 //Thickness of coil (ft)
A = 0.1963 //Area of 18 guage, 3/4-inch copper tube (ft^2/ft)
Uo2 = 1/(1/h2+(l2/k2)+1/h1) //Overall heat transfer coefficient for coil (Btu/h.ft^2. F)
//From steam tables:
Tst = 240 //Temperature for 10 psia (24.7 psia) steam ( F)
Ac = Q/(Uo2*(Tst-T1)) //Area of tube (ft^2)
L = Ac/A //Lengt of tube (ft)
//Result:
printf("The length ofcopper tubing required is : %.1f ft",L)
|
fac7e06a347d20a11ae69ddfd5071e8cf2f300c4 | fdc5047b7bf8122bad1e621df236b0481226c36e | /virtualProcessComm_V4/macros/vpcReactInterface.sci | ce84e795e6e09790fe226fe9fcc1bdf997a7923d | [] | no_license | jpbevila/virtualHartSci | aea3c6ba23d054670eb193f441ea7de982b531cc | a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5 | refs/heads/main | 2023-07-26T23:05:28.044194 | 2021-09-09T11:50:59 | 2021-09-09T11:50:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,810 | sci | vpcReactInterface.sci | function varargout = vpcReactInterface(varargin)
select get(varargin(1),'Style')
case 'popupmenu' then
isUi = %T
typeProp = 'Value';
case 'edit' then
isUi = %T
typeProp = 'String';
else
isUi = %F;
typeProp = 'String';
end
select argn(2)
case 1 then
if argn(1) == 1 then
varargout = list(vpcBDReadTranslated(varargin(1)));
elseif isUi then//Escrita informada pelo Callback
vpcBDWriteTranslated(varargin(1),get(varargin(1),typeProp));
end
case 2 then//Escrita feita Direta
vpcBDWriteTranslated(varargin(1),varargin(2));
if isUi then set(varargin(1),typeProp,varargin(2)) end;
case 3 then//Escrita indireta
if type(varargin(3)) == 10 then
vpcReactInterface(varargin(1),get(varargin(1),typeProp));
scf(get(varargin(3),'figure_id'));
ui = gcf();
else
ui = varargin(3);
if isUi || varargin(1)=='image' then
if typeProp == 'Value' then
set(varargin(1),'String',string(bdVpcGet(bdVpcGet(varargin(1),'type'),'all','desc')));
set(varargin(1),typeProp,vpcBDReadTranslated(varargin(1)));
else
set(varargin(1),typeProp,string(vpcBDReadTranslated(varargin(1))));
end
end
end
for i=1:size(ui.children,1)
tag = ui.children(i).tag;
vpcReactInterface(tag,'ui',ui.children(i));
end
else
disp('vpcReactInterface - Erro');
exit();
end
endfunction
|
a4b8d9bfcad597be6c2d1f0d59945e14bcce3cc2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH5/EX5.5.37/Ch5_5_37.sce | 8b47542056194e0a307a7896ae4f2626c4cc36f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 412 | sce | Ch5_5_37.sce | clc
disp("Example 5.37")
printf("\n")
disp("calculate the phase shift with negative feedback")
printf("Given\n")
//open loop phase shift
Po=15
//open loop gain
Av=60000
//closed loop gain
Acl=300
//to calculate phase shift with feedback
AvB=(Av/Acl)-1
k=((AvB*sin(Po*%pi/180))/(1+(AvB*cos(Po*%pi/180))))
Pcl=Po-(atan(k)*180/%pi)
printf("The phase shift with negative feedback=\t%f degree\n",Pcl)
|
16e08dcd52f305e75aad6f2c02a34bc08b4c5226 | 449d555969bfd7befe906877abab098c6e63a0e8 | /698/CH2/EX2.14/P14_stress_in_eccentric_loading.sce | 98d4491796ce997bd5d4eb797c7d12ab02e18220 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,407 | sce | P14_stress_in_eccentric_loading.sce | clc
//Example 2.14
//Stress in Eccentric Loading
//------------------------------------------------------------------------------
//Given dta:
//Load
P=500000 // N
//Dimensions
//Eccentricity
e=0.05 // m
//Cross section
b=0.3 // m
d=0.2 // m
A = b*d
I=(b*(d^3))/12
c = d/2
//Bending moment
M=P*e
//------------------------------------------------------------------------------
//Printing the result file to .txt
res14=mopen(TMPDIR+'14_stress_in_eccentric_loading.txt','wt')
mfprintf(res14,'The member is subjected to direct stress and \nalso bending stresses due to eccentricity of the load')
mfprintf(res14,'\n Total stress \n\tS=Sd + Sb --- This will be compressive, since Sd is compressive, and Sb is acting in the direction of Sd')
mfprintf(res14,'\n\tS=Sd - Sb --- This will be compressive, since Sb is opposing Sd')
Sd=(P/A)
Sb=(M*c)/I
S1=-(Sd+Sb) // This will be compressive
S2=-(Sd-Sb) // This will be tensile
mfprintf(res14,'\n\nStresses induced are %0.3f MPa',S1* (10^-6))
nature(S1)
mfprintf(res14,' and %0.3f MPa',S2* (10^-6))
nature(S2)
mfprintf(res14,'\nMaximum Tensile Stress is %0.3f MPa',S2* (10^-6))
mclose(res14)
editor(TMPDIR+'14_stress_in_eccentric_loading.txt')
//------------------------------------------------------------------------------
//-----------------------------End of program----------------------------------- |
b7039cf39ce0d13c08527ebbeaa925db44e6cfd1 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electric_Machinery_And_Transformers_B._S._Guru_And_H._R._Hiziroglu_380.zip/Electric_Machinery_And_Transformers_B._S._Guru_And_H._R._Hiziroglu_380/CH2/EX2.1/2_1.sce | e08cde3e7fbd267582052bccc02b65e38ebaf57c | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 366 | sce | 2_1.sce | errcatch(-1,"stop");mode(2);//Caption:Find the induced emf in coil
//Exa:2.1
;
;
;
N=1000;//Number of turns
phy_1=100*10^-3;//initial magnetic flux (in webers)
phy_2=20*10^-3;//final magnetic flux (in webers)
phy=phy_2-phy_1;//change in magnetic flux
t=5;//(in seconds)
e=(-1)*N*(phy/t);//induced emf (in volts)
disp(e,'Induced emf (in volts)=')
exit();
|
30b05218e8caeaa8ec9d7b6afd0b5eec8369f1d6 | b0aff14da16e18ea29381d0bd02eede1aafc8df1 | /mtlbSci/macros/moc_filtfilt.sci | f7defbc42ac645a1c541f6354ef6e57b1a1656ce | [] | no_license | josuemoraisgh/mtlbSci | 5d762671876bced45960a774f7192b41124a13ed | 5c813ed940cccf774ccd52c9a69f88ba39f22deb | refs/heads/main | 2023-07-15T23:47:11.843101 | 2021-08-26T17:52:57 | 2021-08-26T17:52:57 | 385,216,432 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,304 | sci | moc_filtfilt.sci | function y = moc_filtfilt(b, a, x)
[nargout,nargin]=argn(0);
if (nargin ~= 3)
error("y=filtfilt(b,a,x)");
end
rot = (size(x,1)==1);
if (rot) // a row vector
x = x(:); // make it a column vector
end
lx = size(x,1);
a = a(:).';
b = b(:).';
lb = length(b);
la = length(a);
n = max(lb, la);
lrefl = 3 * (n - 1);
if la < n, a(n) = 0; end
if lb < n, b(n) = 0; end
// Compute a the initial state taking inspiration from
// Likhterov & Kopeika, 2003. "Hardware-efficient technique for
// minimizing startup transients in Direct Form II digital filters"
kdc = sum(b) / sum(a);
if (abs(kdc) < inf) // neither NaN nor +/- Inf
si = moc_fliplr(cumsum(moc_fliplr(b - kdc * a)));
else
si = mtlb_zeros(size(a)); // fall back to zero initialization
end
si(1) = [];
for (c = 1:columns(x)) // filter all columns, one by one
v = [2*x(1,c)-x((lrefl+1):-1:2,c); x(:,c);
2*x($,c)-x(($-1):-1:$-lrefl,c)]; // a column vector
// Do forward and reverse filtering
v = filter(b,a,v,si*v(1)); // forward filter
v = moc_flipud(filter(b,a,moc_flipud(v),si*v($))); // reverse filter
y(:,c) = v((lrefl+1):(lx+lrefl));
end
if (rot) // x was a row vector
y = moc_rot90(y); // rotate it back
end
endfunction |
a1a2cb9b8c8709fcf0e9c534fc1b189cdf401026 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1244/CH2/EX2.9/Example29.sce | 586009e8b5681876791b549700fe629ce6d7be23 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 750 | sce | Example29.sce |
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clc;
disp("Principles of Heat Transfer, 7th Ed. Frank Kreith et. al Chapter - 2 Example # 2.9 ")
//Thermal conductivity in W/mC
k = 1.04;
//For square length and breadth are equal and are in m
D = 0.5;
//Area in m2
A = D*D;
//Thickness in m
L = 0.1;
//Inside temperature in degree C
Ti = 500;
//Outside temperature in degree C
To = 50;
//Shape factor for walls
Sw = A/L;
//Shape factor for corners
Sc = 0.15*L;
//Shape factor for edges
Se = 0.54*D;
//There are 6 wall sections, 12 edges, and 8 corners, so that the total
//shape factor is
S = 6*Sw+12*Se+8*Sc;
disp("Heat flow in W is")
//Heat flow in W
q = (k*S)*(Ti-To)
|
43b3142f62684577e51aee7851fde69c21b8218c | d119d186a54c7ca2179065ed8378eede2b6e6c4e | /ficheros/ARFF/wine.tst | 4aa569d029e17a268f7536c6997513faade50955 | [] | no_license | champunes/TrajectoryAlgorithm1 | e810d15e7182433a01e8aced49f9494f9c4ce0f3 | c081644a8b3bbe6251c5e7dcc0f8087ebe1be3d3 | refs/heads/master | 2016-09-11T03:01:43.571461 | 2011-12-07T13:23:22 | 2011-12-07T13:23:22 | 2,742,524 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,233 | tst | wine.tst | @relation Wine
@attribute at1 real
@attribute at2 real
@attribute at3 real
@attribute at4 real
@attribute at5 real
@attribute at6 real
@attribute at7 real
@attribute at8 real
@attribute at9 real
@attribute at10 real
@attribute at11 real
@attribute at12 real
@attribute at13 real
@attribute class {1, 2, 3}
@data
14.06, 2.15, 2.61, 17.6, 121.0, 2.6, 2.51, 0.31, 1.25, 5.05, 1.06, 3.58, 1295.0, 1
13.86, 1.35, 2.27, 16.0, 98.0, 2.98, 3.15, 0.22, 1.85, 7.22, 1.01, 3.55, 1045.0, 1
14.12, 1.48, 2.32, 16.8, 95.0, 2.2, 2.43, 0.26, 1.57, 5.0, 1.17, 2.82, 1280.0, 1
13.83, 1.57, 2.62, 20.0, 115.0, 2.95, 3.4, 0.4, 1.72, 6.6, 1.13, 2.57, 1130.0, 1
14.19, 1.59, 2.48, 16.5, 108.0, 3.3, 3.93, 0.32, 1.86, 8.7, 1.23, 2.82, 1680.0, 1
13.64, 3.1, 2.56, 15.2, 116.0, 2.7, 3.03, 0.17, 1.66, 5.1, 0.96, 3.36, 845.0, 1
13.39, 1.77, 2.62, 16.1, 93.0, 2.85, 2.94, 0.34, 1.45, 4.8, 0.92, 3.22, 1195.0, 1
13.48, 1.81, 2.41, 20.5, 100.0, 2.7, 2.98, 0.26, 1.86, 5.1, 1.04, 3.47, 920.0, 1
13.88, 1.89, 2.59, 15.0, 101.0, 3.25, 3.56, 0.17, 1.7, 5.43, 0.88, 3.56, 1095.0, 1
14.21, 4.04, 2.44, 18.9, 111.0, 2.85, 2.65, 0.3, 1.25, 5.24, 0.87, 3.33, 1080.0, 1
12.37, 1.13, 2.16, 19.0, 87.0, 3.5, 3.1, 0.19, 1.87, 4.45, 1.22, 2.87, 420.0, 2
12.17, 1.45, 2.53, 19.0, 104.0, 1.89, 1.75, 0.45, 1.03, 2.95, 1.45, 2.23, 355.0, 2
13.03, 0.9, 1.71, 16.0, 86.0, 1.95, 2.03, 0.24, 1.46, 4.6, 1.19, 2.48, 392.0, 2
12.33, 0.99, 1.95, 14.8, 136.0, 1.9, 1.85, 0.35, 2.76, 3.4, 1.06, 2.31, 750.0, 2
11.84, 0.89, 2.58, 18.0, 94.0, 2.2, 2.21, 0.22, 2.35, 3.05, 0.79, 3.08, 520.0, 2
12.16, 1.61, 2.31, 22.8, 90.0, 1.78, 1.69, 0.43, 1.56, 2.45, 1.33, 2.26, 495.0, 2
12.29, 1.41, 1.98, 16.0, 85.0, 2.55, 2.5, 0.29, 1.77, 2.9, 1.23, 2.74, 428.0, 2
12.34, 2.45, 2.46, 21.0, 98.0, 2.56, 2.11, 0.34, 1.31, 2.8, 0.8, 3.38, 438.0, 2
12.22, 1.29, 1.94, 19.0, 92.0, 2.36, 2.04, 0.39, 2.08, 2.7, 0.86, 3.02, 312.0, 2
11.61, 1.35, 2.7, 20.0, 94.0, 2.74, 2.92, 0.29, 2.49, 2.65, 0.96, 3.26, 680.0, 2
12.0, 3.43, 2.0, 19.0, 87.0, 2.0, 1.64, 0.37, 1.87, 1.28, 0.93, 3.05, 564.0, 2
12.51, 1.24, 2.25, 17.5, 85.0, 2.0, 0.58, 0.6, 1.25, 5.45, 0.75, 1.51, 650.0, 3
12.84, 2.96, 2.61, 24.0, 101.0, 2.32, 0.6, 0.53, 0.81, 4.92, 0.89, 2.15, 590.0, 3
13.16, 3.57, 2.15, 21.0, 102.0, 1.5, 0.55, 0.43, 1.3, 4.0, 0.6, 1.68, 830.0, 3
13.5, 3.12, 2.62, 24.0, 123.0, 1.4, 1.57, 0.22, 1.25, 8.6, 0.59, 1.3, 500.0, 3
12.58, 1.29, 2.1, 20.0, 103.0, 1.48, 0.58, 0.53, 1.4, 7.6, 0.58, 1.55, 640.0, 3
12.85, 3.27, 2.58, 22.0, 106.0, 1.65, 0.6, 0.6, 0.96, 5.58, 0.87, 2.11, 570.0, 3
12.96, 3.45, 2.35, 18.5, 106.0, 1.39, 0.7, 0.4, 0.94, 5.28, 0.68, 1.75, 675.0, 3
13.58, 2.58, 2.69, 24.5, 105.0, 1.55, 0.84, 0.39, 1.54, 8.66, 0.74, 1.8, 750.0, 3
12.2, 3.03, 2.32, 19.0, 96.0, 1.25, 0.49, 0.4, 0.73, 5.5, 0.66, 1.83, 510.0, 3
14.13, 4.1, 2.74, 24.5, 96.0, 2.05, 0.76, 0.56, 1.35, 9.2, 0.61, 1.6, 560.0, 3
14.22, 3.99, 2.51, 13.2, 128.0, 3.0, 3.04, 0.2, 2.08, 5.1, 0.89, 3.53, 760.0, 1
13.74, 1.67, 2.25, 16.4, 118.0, 2.6, 2.9, 0.21, 1.62, 5.85, 0.92, 3.2, 1060.0, 1
13.11, 1.01, 1.7, 15.0, 78.0, 2.98, 3.18, 0.26, 2.28, 5.3, 1.12, 3.18, 502.0, 2
13.05, 3.86, 2.32, 22.5, 85.0, 1.65, 1.59, 0.61, 1.62, 4.8, 0.84, 2.01, 515.0, 2
11.82, 1.72, 1.88, 19.5, 86.0, 2.5, 1.64, 0.37, 1.42, 2.06, 0.94, 2.44, 415.0, 2
|
416bb6318159f93efa7ff6505b854705fec89c18 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1163/CH11/EX11.1/example_11_1.sce | c2063bbd4676601b47757c7f4643371e82a76b5c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,582 | sce | example_11_1.sce | clear;
clc;
disp("--------------Example 11.1---------------")
//explain the example
printf("This an example of communication using the simplest protocol. It is very simple. The sender sends a sequence of frames\nwithout even thinking about the receiver. To send three frames, three events occur at the sender site and three events at the receiver site.\nThe data frames are shown by tilted boxes in the figure; the height of the box defines the transmission time difference between the first bit\nand the last bit in the frame.");
// display the figure
clf();
xname("--------------Example 11.1----------------");
xrects([.3 .6;.7 .7;.05 .05;.06 .06]);
xset("font size",3);
xstring(.3,.75,"Sender");
xstring(.6,.75,"Reciever");
xstring(.32,.65,"A");
xstring(.62,.65,"B");
xstring(.22,.327,"Request");
xstring(.22,.427,"Request");
xstring(.22,.527,"Request");
xstring(.67,.29,"Arrival");
xstring(.67,.39,"Arrival");
xstring(.67,.49,"Arrival");
xstring(.35,.52,"Frame",8);
xstring(.35,.42,"Frame",8);
xstring(.35,.32,"Frame",8);
xarrows([.29 .325],[.55 .55],.3);
xarrows([.29 .325],[.45 .45],.3);
xarrows([.29 .325],[.35 .35],.3);
xarrows([.625 .66],[.5 .5],.3);
xarrows([.625 .66],[.4 .4],.3);
xarrows([.625 .66],[.3 .3],.3);
xset("color",4.9);
xfpoly([.325 .625 .625 .325],[.56 .51 .46 .51]);
xfpoly([.325 .625 .625 .325],[.46 .41 .36 .41]);
xfpoly([.325 .625 .625 .325],[.36 .31 .26 .31]);
xset("color",0);
xset("line style",2);
xarrows([.325 .325],[.64 .14],.3);
xarrows([.625 .625],[.64 .14],.3);
xstring(.3,.1,"Time");
xstring(.6,.1,"Time"); |
c8ab2ea44f52c9a1e74efb4544851f5dd7f81a0a | 3c47dba28e5d43bda9b77dca3b741855c25d4802 | /microdaq/macros/microdaq_blocks/mdaq_tcp_send.sci | 6234765d2159d51e116f4c72dd1c9bfb5f6edc9c | [
"BSD-3-Clause"
] | permissive | microdaq/Scilab | 78dd3b4a891e39ec20ebc4e9b77572fd12c90947 | ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf | refs/heads/master | 2021-09-29T11:55:21.963637 | 2019-10-18T09:47:29 | 2019-10-18T09:47:29 | 35,049,912 | 6 | 3 | BSD-3-Clause | 2019-10-18T09:47:30 | 2015-05-04T17:48:48 | Scilab | UTF-8 | Scilab | false | false | 3,990 | sci | mdaq_tcp_send.sci | function [x,y,typ] = mdaq_tcp_send(job,arg1,arg2)
tcp_recv_desc = [
"The TCP Send block sends data from your model";
"to the specified remote machine using the TCP protocol.";
"Block allows data buffering. User has to provide input";
"signal vector size. When buffer is enabled data will be";
"stored in block buffer and send when defined";
"buffer end is reached. Buffer size defines how many vectors";
"will be buffered";
"When ''Trigger input'' is enabled (set to 1) additional";
"block input can be used to trigger TCP data send.";
"Rising edge on trigger input will send data from TCP block";
"buffer. If defined block buffer size end is reached data" ;
"will be send independently from trigger input state.";
"";
"NOTE: Only one TCP send block can be used on Xcos scheme";
"";
"Set TCP Send block parameters:";
];
x=[];y=[];typ=[];
select job
case 'set' then
x=arg1
model=arg1.model;
graphics=arg1.graphics;
exprs=graphics.exprs;
while %t do
try
getversion('scilab');
[ok,ip_addr, udp_port, data_size, buf_size, trigger_input,exprs]=..
scicos_getvalue(tcp_recv_desc,..
['Remote address:';
'Port:';
'Vector size:';
'Buffer size:';
'Trigger input:'],..
list('str',1,'vec',1,'vec',1,'vec',1,'vec',1),exprs)
catch
[ok,ip_addr, udp_port, data_size, buf_size, trigger_input,exprs]=..
scicos_getvalue(tcp_recv_desc,..
['Remote address:';
'Port:';
'Vector size:';
'Buffer size:';
'Trigger input:'],..
list('str',1,'vec',1,'vec',1,'vec',1,'vec',1),exprs)
end;
if ~ok then
break
end
if udp_port < 0 | udp_port > 65535 then
ok = %f;
message("Valid port values are 1 to 65535.");
end
if data_size > 1024 | data_size < 1 then
ok = %f;
message("Incorrect data size (max 1024).");
end
input_ports = data_size;
if trigger_input == 1 then
input_ports = [data_size 1];
end
if ok then
[model,graphics,ok] = check_io(model, graphics, input_ports, [], 1, []);
graphics.exprs = exprs;
model.rpar = [];
ip_addr = part(ip_addr, [2:length(ip_addr)-1]);
model.ipar = [udp_port; data_size; buf_size; ascii(ip_addr)'];
model.dstate = [];
x.graphics = graphics;
x.model = model;
break
end
end
case 'define' then
ip_addr = '10.10.1.2';
udp_port = 9090;
data_size = 1;
buf_size = 1;
trigger_input = 0;
model=scicos_model()
model.sim=list('mdaq_tcp_send_sim',5)
model.in =1;
model.out=[];
model.intyp=1;
model.evtin=1
model.rpar=[];
model.ipar=[udp_port; data_size; buf_size; ascii(ip_addr)'];
model.dstate=[];
model.blocktype='d'
model.dep_ut=[%t %f]
exprs=[sci2exp(ip_addr); sci2exp(udp_port); sci2exp(data_size); sci2exp(buf_size); sci2exp(trigger_input)]
gr_i=['xstringb(orig(1),orig(2),['''' ; ],sz(1),sz(2),''fill'');']
x=standard_define([4 3],model,exprs,gr_i)
x.graphics.in_implicit=[];
x.graphics.exprs=exprs;
end
endfunction
|
c9564777594980047b8dfa702b3e2c4a0698e34d | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH2/EX2.25/example2_25.sce | 2ad8a0de968a8c353f16fde37730dbd76d6d130e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 542 | sce | example2_25.sce | // Find static resistance
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 2-25 in page 103
clear; clc; close;
// Given data
I_0=20*10^-6; // Current in micro A
V_F=0.2; // Forward voltage in V
// Calculation
I=I_0*(exp(40*V_F)-1);
r_dc=(0.0343/(80*10^-6))*exp(0.2/0.0343);
printf("Forward current through the diode = %0.3e A\n",I);
printf("Static resistance = %0.3e ohm",r_dc);
// Result
// Forward current = 59.599 mA
// Static resistance = 0.146 Mohm |
9e74cb21be7f8bcb92327d02b7bdf143c0b19c12 | 2eb5af42eb6d1b5d884fddf523feaaaa466d7907 | /features.sce | 0d62a0ee9939a4b96824b01ad6affa7f90fa8171 | [] | no_license | eddyrene/robust-knn-classifier- | 11532499d33df9e32efab04ab0c2652d93319eff | 7a35439a4d74618ca4ebed065acdcbe68bf4650a | refs/heads/master | 2020-03-20T08:11:42.680961 | 2018-06-14T03:36:42 | 2018-06-14T03:36:42 | 137,301,606 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,932 | sce | features.sce | //hito 1
//Aluno: Eddy René Cáceres Huacarpuma
function s= convertToGray(im)
s= im(:,:,1)/3 + im(:,:,2)/3 + im(:,:,3)/3;
endfunction
function output = limiarize(input)
im1 = input(:,:);
im = convertToGray(im1);
im=(im<255)*1;
output=im;
endfunction
function output =area(input)
// Description of area(input)
im = input(:,:);
dd= (im==1)*1;
output=sum(dd);
endfunction
function output = euclidian(x1,x2,y1,y2)
// Description of euclidian(input)
output = sqrt((x1-x2)^2 + (y1-y2)^2);
endfunction
function output = diameter(input)
// Description of diameter(input)
tam=size(input)(1);
tmp=0;
for i=1:tam
x_p= a(i,1); y_p=a(i,2);
for j=i+1:tam // só sobre o triangulo superior da matriz de adjacencias
x_t= a(j,1);
y_t= a(j,2);
tmp1= euclidian(x_p,x_t,y_p,y_t);
if(tmp1>tmp) then //almacena o maior da todas as comparações
tmp=tmp1;
end
end
output=tmp;
end
end
clc;
scicv_Init();
chdir('C:\Users\mica\Desktop\PDI\trabFinal\');
exec('follow.sci')
//fid = mopen("result/data_lentilha.txt", "w"); //save results in file
fid = mopen("result/data_melancia.txt", "w"); //save results in file
if (fid == -1)
error('cannot open file for writing');
end
mfprintf(fid," ID Area Diameter \n");
for n=1:30
//name= strcat(['Lentilha_Melancia/lentilha_',string(n),'.png']); // lentilla
name= strcat(['Lentilha_Melancia/melancia_',string(n),'.png']); // melancia
obj = imread(name);
r1= limiarize(obj);
valArea= area(r1); // valor da área
[x y] = follow(r1);
//plot2d(x,y); // graficar os puntos do perímetro
a =[x y];
valDiam = diameter(a); // valor do diámetro
//disp(valDiam);
mfprintf(fid, "%d, %d, %f \n", n,valArea ,valDiam);
end
mclose(fid); |
31708f69bb499f10706c8a0601f60eca60a02ecd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH2/EX2.10/Ex2_10.sce | 6dba84d1dd1194eff797022e499f2410bc7eaac5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 385 | sce | Ex2_10.sce | //Example 2.10
a=26;//Acceleration (m/s^2)
x_0=0;//Initial position (m)
v_0=0;//Initial velocity (m/s)
t=5.56;//Time (s)
x=x_0+v_0*t+(1/2)*a*t^2;//Final position or distance travelled (m)
printf('Distance travelled by the dragster = %0.1f m',x)
//Answer varies due to round off error
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
8283a60c77628bc991f546268afd3bfb61dd429e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3363/CH6/EX6.2/Ex6_2.sce | b88540536e7dee7cef286ad3fb5e9f28e68a5735 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 197 | sce | Ex6_2.sce | //Example 6.2, page 210
clc
//KE=4ev, convert to joule
KE=4*1.6*10^-19//in j
m=9*10^-31//in kg
h=10^-34//in j-s
delta_x=(h)/sqrt(2*m*KE)
printf("\n Value of penetration distance is %e m ",delta_x) |
693c83755d70fcd3072e40753ee1b116a9609cc4 | 2ba48648eefadee113a7c2f5d608cab5209c3a8b | /Unit&Func Test/单元测试文档/CagOS单元测试结果/LIBC/testcase/ns16550.tst | 97ce997ab1deae91547075029b4fac48f359af5c | [] | no_license | wangdong412/Consen-SIS | 879762175575d0a62f26ec1effeb46c3fd62e3e8 | bca3fac35c961c3558a3438bca55e6d20825da3a | refs/heads/master | 2020-07-11T05:17:18.814104 | 2019-08-27T09:41:41 | 2019-08-27T09:41:41 | 204,450,874 | 1 | 5 | null | null | null | null | UTF-8 | Scilab | false | false | 3,568 | tst | ns16550.tst | -- VectorCAST 6.4c (02/03/16)
-- Test Case Script
--
-- Environment : LIBC
-- Unit(s) Under Test: abort1 abs atof atoi atol bLib memchr memcmp memcpy memmove memset ns16550 qsort rand random random_r strcat strchr strcmp strcpy strlcat strlcpy strlen strncat strncmp strncpy strpbrk strspn strtod strtok strtok_r strtol strtoul
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
--
-- Unit: ns16550
-- Subprogram: ns16550DevInit
-- Test Case: Devinit
TEST.UNIT:ns16550
TEST.SUBPROGRAM:ns16550DevInit
TEST.NEW
TEST.NAME:Devinit
TEST.BASIS_PATH:1 of 1
TEST.NOTES:
No branches in subprogram
TEST.END_NOTES:
TEST.STUB:uut_prototype_stubs.writeb
TEST.VALUE:ns16550.<<GLOBAL>>.siodev:<<malloc 1>>
TEST.END
-- Subprogram: ns16550InputChar
-- Test Case: inputchar1
TEST.UNIT:ns16550
TEST.SUBPROGRAM:ns16550InputChar
TEST.NEW
TEST.NAME:inputchar1
TEST.BASIS_PATH:1 of 2
TEST.NOTES:
This is an automatically generated test case.
Test Path 1
(1) while ((readb(&(siodev->lsr)) & 0x1) == 0) ==> FALSE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.STUB:uut_prototype_stubs.readb
TEST.VALUE:uut_prototype_stubs.readb.return:1
TEST.VALUE:ns16550.<<GLOBAL>>.siodev:<<malloc 1>>
TEST.EXPECTED:ns16550.ns16550InputChar.return:\1
TEST.END
-- Test Case: inputchar2
TEST.UNIT:ns16550
TEST.SUBPROGRAM:ns16550InputChar
TEST.NEW
TEST.NAME:inputchar2
TEST.BASIS_PATH:2 of 2
TEST.NOTES:
This is an automatically generated test case.
Test Path 2
(1) while ((readb(&(siodev->lsr)) & 0x1) == 0) ==> TRUE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.STUB:uut_prototype_stubs.readb
TEST.VALUE:uut_prototype_stubs.readb.return:0
TEST.EXPECTED:ns16550.ns16550InputChar.return:\0
TEST.END
-- Subprogram: ns16550OutputChar
-- Test Case: outputchar1
TEST.UNIT:ns16550
TEST.SUBPROGRAM:ns16550OutputChar
TEST.NEW
TEST.NAME:outputchar1
TEST.BASIS_PATH:1 of 2
TEST.NOTES:
This is an automatically generated test case.
Test Path 1
(1) while ((readb(&(siodev->lsr)) & 0x20) == 0) ==> FALSE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.STUB:uut_prototype_stubs.readb
TEST.STUB:uut_prototype_stubs.writeb
TEST.VALUE:uut_prototype_stubs.readb.return:32
TEST.STUB_EXP_USER_CODE:uut_prototype_stubs.writeb.val
{{ <<uut_prototype_stubs.writeb.val>> == ( 'A' ) }}
TEST.END_STUB_EXP_USER_CODE:
TEST.VALUE_USER_CODE:ns16550.ns16550OutputChar.c
<<ns16550.ns16550OutputChar.c>> = ( 'A' );
TEST.END_VALUE_USER_CODE:
TEST.END
-- Test Case: outputchar2
TEST.UNIT:ns16550
TEST.SUBPROGRAM:ns16550OutputChar
TEST.NEW
TEST.NAME:outputchar2
TEST.BASIS_PATH:2 of 2
TEST.NOTES:
This is an automatically generated test case.
Test Path 2
(1) while ((readb(&(siodev->lsr)) & 0x20) == 0) ==> TRUE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.STUB:uut_prototype_stubs.readb
TEST.STUB:uut_prototype_stubs.writeb
TEST.VALUE:uut_prototype_stubs.readb.return:0
TEST.STUB_EXP_USER_CODE:uut_prototype_stubs.writeb.val
{{ <<uut_prototype_stubs.writeb.val>> == ( 'B' ) }}
TEST.END_STUB_EXP_USER_CODE:
TEST.VALUE_USER_CODE:ns16550.ns16550OutputChar.c
<<ns16550.ns16550OutputChar.c>> = ( 'B' );
TEST.END_VALUE_USER_CODE:
TEST.END
-- Subprogram: ns16550SioInit
-- Test Case: IOinit
TEST.UNIT:ns16550
TEST.SUBPROGRAM:ns16550SioInit
TEST.NEW
TEST.NAME:IOinit
TEST.BASIS_PATH:1 of 1
TEST.NOTES:
No branches in subprogram
TEST.END_NOTES:
TEST.STUB:ns16550.ns16550DevInit
TEST.END
|
4b898f15139b93cc889852c11cb814fd4902d91f | cc12ec93c0b08942213a72f569c733ccb508e72e | /Assignment1/Problem2.sce | fca89392cfa2698a741bba409949532fdaa5ddab | [] | no_license | shreyashukla-26/LA_Assignment | ac0637690742b90ed5cd964e13fd9cfa832b51e6 | 6b57188873716ac53f8036d6292e0b4138b91dda | refs/heads/master | 2020-12-31T09:32:57.961753 | 2020-09-21T09:01:01 | 2020-09-21T09:01:01 | 238,979,483 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 638 | sce | Problem2.sce | A=input("Enter elements of matrix A:")
disp(A,"The coefficients of matrix A are:")
B=input("Enter elements of matrix B:")
disp(B,"The coefficients of matrix B are:")
a=[A B]// The augmented matrix
n=3
for x=2:n
for y=2:n+1
a(x,y)=a(x,y)-a(1,y)*a(x,1)/a(1,1)
end
a(x,1)=0
end
for x=3:n
for y=3:n+1
a(x,y)=a(x,y)-a(2,y)*a(x,2)/a(2,2)
end
a(x,2)=0
end
z(n)=a(n,n+1)/a(n,n)
for i=n-1:-1:1
s=0
for k=i+1:n
s=s+a(i,k)*z(k)
end
z(i)=(a(i,n+1)-s)/a(i,i)
end
disp(z(3),z(2),z(1),"z,y,z are equal to")
disp(a(1,1),a(2,2),a(3,3),"The Pivots")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.