<
head>
</
head>
<!--
Index for ProtoDeclares:
ReceiverPdu,
SignalPdu,
TransmitterPdu
Index for DEF nodes:
FONT1,
FONT2,
FONT3,
ReceiverOutput1,
ReceiverOutputAssembler1,
ReceiverPduGeometrySwitch,
ReceiverPduReadIntervalClock,
ReceiverPduScriptNode,
ReceiverPduWriteIntervalClock,
SignalOutput1,
SignalOutput2,
SignalOutputAssembler1,
SignalOutputAssembler2,
SignalPduGeometrySwitch,
SignalPduReadIntervalClock,
SignalPduScriptNode,
SignalPduWriteIntervalClock,
TransmitterOutput1,
TransmitterOutput2,
TransmitterOutput3,
TransmitterOutputAssembler1,
TransmitterOutputAssembler2,
TransmitterOutputAssembler3,
TransmitterPduGeometrySwitch,
TransmitterPduReadIntervalClock,
TransmitterPduScriptNode,
TransmitterPduWriteIntervalClock,
YellowAppearance2,
YellowAppearance3
-->
<
Scene>
<!-- ============================================================ -->
<
ProtoDeclare name='
ReceiverPdu'>
<
ProtoInterface>
<
field name='
whichGeometry'
type='
SFInt32'
value='
0'
accessType='
inputOutput'
appinfo='
set whichGeometry to -1 for no geometry, 0 for text trace, 1 for default geometry'/>
<
field name='
bboxCenter'
type='
SFVec3f'
value='
0 0 0'
accessType='
initializeOnly'
appinfo='
Bounding box center: position offset from origin of local coordinate system.'/>
<
field name='
bboxSize'
type='
SFVec3f'
value='
-1 -1 -1'
accessType='
initializeOnly'
appinfo='
Bounding box size: automatically calculated, can be specified as an optimization or constraint.'/>
<!-- Initialization fields -->
<
field name='
readInterval'
type='
SFTime'
value='
0.1'
accessType='
initializeOnly'/>
<
field name='
writeInterval'
type='
SFTime'
value='
1.0'
accessType='
initializeOnly'/>
<
field name='
siteID'
type='
SFInt32'
value='
14'
accessType='
initializeOnly'/>
<
field name='
applicationID'
type='
SFInt32'
value='
17'
accessType='
initializeOnly'/>
<
field name='
entityID'
type='
SFInt32'
value='
9'
accessType='
initializeOnly'/>
<
field name='
address'
type='
SFString'
value='
224.2.181.145'
accessType='
initializeOnly'/>
<
field name='
port'
type='
SFInt32'
value='
62040'
accessType='
initializeOnly'/>
<
field name='
multicastRelayHost'
type='
SFString'
value='
devo.cs.nps.navy.mil'
accessType='
initializeOnly'/>
<
field name='
multicastRelayPort'
type='
SFInt32'
value='
8010'
accessType='
initializeOnly'/>
<
field name='
networkMode'
type='
SFString'
value='
standAlone'
accessType='
inputOutput'
appinfo='
networkMode: standAlone (ignore network but still respond to local events) networkReader (listen to network as ghost entity) networkWriter (output to network as master entity at writeInterval)'/>
<
field name='
isStandAlone'
type='
SFBool'
accessType='
outputOnly'
appinfo='
Whether networkMode standAlone (ignore network but still respond to local events) is true/false'/>
<
field name='
isMaster'
type='
SFBool'
accessType='
outputOnly'
appinfo='
Whether networkMode 'networkWriter' (output to network as master entity at writeInterval) is true/false'/>
<
field name='
isRemote'
type='
SFBool'
accessType='
outputOnly'
appinfo='
Whether networkMode 'networkReader' (listen to network as ghost entity) is true/false'/>
<
field name='
rtpHeaderExpected'
type='
SFBool'
value='
false'
accessType='
initializeOnly'/>
<
field name='
isRtpHeaderHeard'
type='
SFBool'
accessType='
outputOnly'
appinfo='
whether RTP header was found prepended to DIS packet'/>
<
field name='
trace'
type='
SFBool'
value='
false'
accessType='
initializeOnly'/>
<!-- Generic events -->
<
field name='
active'
type='
SFBool'
accessType='
outputOnly'/>
<
field name='
timestamp'
type='
SFTime'
accessType='
outputOnly'/>
<!-- RadioCommunicationsFamily events -->
<
field name='
radioID'
type='
SFInt32'
accessType='
outputOnly'/>
<!-- ReceiverPdu fields -->
<
field name='
receivedPower'
type='
SFFloat'
accessType='
outputOnly'/>
<
field name='
receiverState'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
transmitterSiteID'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
transmitterApplicationID'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
transmitterEntityID'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
transmitterRadioID'
type='
SFInt32'
accessType='
outputOnly'/>
</
ProtoInterface>
<
ProtoBody>
<!-- First node inside a PrototypeDeclaration is the node type of the ProtoInstance -->
<
Switch DEF='
ReceiverPduGeometrySwitch'
whichChoice='
-1'>
<
IS>
</
IS>
<!-- whichChoice -1 is no rendering, choice 0 is text trace, choice 1 is default geometry -->
<
Group>
<![CDATA[
ecmascript:
function initialize ()
{
value='awaiting PDU';
messageResult [0] = 'active=' + value;
messageResult [1] = 'timestamp=' + value;
messageResult [2] = 'isRtpHeaderHeard=' + value;
messageResult [3] = 'radioID=' + value;
messageResult [4] = 'receivedPower=' + value;
messageResult [5] = 'receiverState=' + value;
messageResult [6] = 'transmitterSiteID=' + value;
messageResult [7] = 'transmitterApplicationID=' + value;
messageResult [8] = 'transmitterEntityID=' + value;
messageResult [9] = 'transmitterRadioID=' + value;
}
function active (value, ts) { messageResult [0] = 'active=' + value; }
function timestamp (value, ts) { messageResult [1] = 'timestamp=' + value; }
function isRtpHeaderHeard (value, ts) { messageResult [2] = 'isRtpHeaderHeard=' + value; }
function radioID (value, ts) { messageResult [3] = 'radioID=' + value; }
function receivedPower (value, ts) { messageResult [4] = 'receiverPower=' + value; }
function receiverState (value, ts) { messageResult [5] = 'receiverState=' + value; }
function transmitterSiteID (value, ts) { messageResult [6] = 'transmitterSiteID=' + value; }
function transmitterApplicationID (value, ts) { messageResult [7] = 'transmitterApplicationID=' + value; }
function transmitterEntityID (value, ts) { messageResult [8] = 'transmitterEntityID=' + value; }
function transmitterRadioID (value, ts) { messageResult [9] = 'transmitterRadioID=' + value; }
]]>
</
ProtoDeclare>
<!-- ============================================================ -->
<
ProtoDeclare name='
SignalPdu'>
<
ProtoInterface>
<!-- set whichGeometry to -1 for no geometry, 0 for text trace, 1 for default geometry -->
<
field name='
whichGeometry'
type='
SFInt32'
value='
0'
accessType='
inputOutput'/>
<
field name='
bboxCenter'
type='
SFVec3f'
value='
0 0 0'
accessType='
initializeOnly'
appinfo='
Bounding box center: position offset from origin of local coordinate system.'/>
<
field name='
bboxSize'
type='
SFVec3f'
value='
-1 -1 -1'
accessType='
initializeOnly'
appinfo='
Bounding box size: automatically calculated, can be specified as an optimization or constraint.'/>
<!-- Initialization fields -->
<
field name='
readInterval'
type='
SFTime'
value='
0.1'
accessType='
initializeOnly'/>
<
field name='
writeInterval'
type='
SFTime'
value='
1.0'
accessType='
initializeOnly'/>
<
field name='
siteID'
type='
SFInt32'
value='
14'
accessType='
initializeOnly'/>
<
field name='
applicationID'
type='
SFInt32'
value='
17'
accessType='
initializeOnly'/>
<
field name='
entityID'
type='
SFInt32'
value='
9'
accessType='
initializeOnly'/>
<
field name='
address'
type='
SFString'
value='
224.2.181.145'
accessType='
initializeOnly'/>
<
field name='
port'
type='
SFInt32'
value='
62040'
accessType='
initializeOnly'/>
<
field name='
multicastRelayHost'
type='
SFString'
value='
devo.cs.nps.navy.mil'
accessType='
initializeOnly'/>
<
field name='
multicastRelayPort'
type='
SFInt32'
value='
8010'
accessType='
initializeOnly'/>
<
field name='
networkMode'
type='
SFString'
value='
standAlone'
accessType='
inputOutput'
appinfo='
networkMode: standAlone (ignore network but still respond to local events) networkReader (listen to network as ghost entity) networkWriter (output to network as master entity at writeInterval)'/>
<
field name='
isStandAlone'
type='
SFBool'
accessType='
outputOnly'
appinfo='
Whether networkMode standAlone (ignore network but still respond to local events) is true/false'/>
<
field name='
isMaster'
type='
SFBool'
accessType='
outputOnly'
appinfo='
Whether networkMode 'networkWriter' (output to network as master entity at writeInterval) is true/false'/>
<
field name='
isRemote'
type='
SFBool'
accessType='
outputOnly'
appinfo='
Whether networkMode 'networkReader' (listen to network as ghost entity) is true/false'/>
<
field name='
rtpHeaderExpected'
type='
SFBool'
value='
false'
accessType='
initializeOnly'/>
<
field name='
isRtpHeaderHeard'
type='
SFBool'
accessType='
outputOnly'
appinfo='
whether RTP header was found prepended to DIS packet'/>
<
field name='
trace'
type='
SFBool'
value='
false'
accessType='
initializeOnly'/>
<!-- Generic events -->
<
field name='
active'
type='
SFBool'
accessType='
outputOnly'/>
<
field name='
timestamp'
type='
SFTime'
accessType='
outputOnly'/>
<!-- RadioCommunicationsFamily events -->
<
field name='
radioID'
type='
SFInt32'
accessType='
outputOnly'/>
<!-- SignalPdu fields -->
<
field name='
encodingScheme'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
tdlType'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
sampleRate'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
samples'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
dataLength'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
data00'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
data01'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
data02'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
data03'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
data04'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
data05'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
data06'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
data07'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
data08'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
data09'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
data10'
type='
SFInt32'
accessType='
outputOnly'/>
</
ProtoInterface>
<
ProtoBody>
<!-- First node inside a PrototypeDeclaration is the node type of the ProtoInstance -->
<
Switch DEF='
SignalPduGeometrySwitch'
whichChoice='
-1'>
<
IS>
</
IS>
<!-- whichChoice -1 is no rendering, choice 0 is text trace, choice 1 is default geometry -->
<
Group>
<![CDATA[
ecmascript:
function initialize ()
{
value='awaiting PDU';
messageResult [0] = 'active=' + value;
messageResult [1] = 'timestamp=' + value;
messageResult [2] = 'isRtpHeaderHeard=' + value;
messageResult [3] = 'radioID=' + value;
messageResult [4] = 'encodingScheme=' + value;
messageResult [5] = 'tdlType=' + value;
messageResult [6] = 'sampleRate=' + value;
messageResult [7] = 'samples=' + value;
messageResult [8] = 'dataLength=' + value;
messageResult [9] = 'data00=' + value;
}
function active (value, ts) { messageResult [0] = 'active=' + value; }
function timestamp (value, ts) { messageResult [1] = 'timestamp=' + value; }
function isRtpHeaderHeard (value, ts) { messageResult [2] = 'isRtpHeaderHeard=' + value; }
function radioID (value, ts) { messageResult [3] = 'radioID=' + value; }
function encodingScheme (value, ts) { messageResult [4] = 'encodingScheme=' + value; }
function tdlType (value, ts) { messageResult [5] = 'tdlType=' + value; }
function sampleRate (value, ts) { messageResult [6] = 'sampleRate=' + value; }
function samples (value, ts) { messageResult [7] = 'samples=' + value; }
function dataLength (value, ts) { messageResult [8] = 'dataLength=' + value; }
function data00 (value, ts) { messageResult [9] = 'data00=' + value; }
]]>
<![CDATA[
ecmascript:
function initialize ()
{
messageResult [0] = 'data01=' + value;
messageResult [1] = 'data02=' + value;
messageResult [2] = 'data03=' + value;
messageResult [3] = 'data04=' + value;
messageResult [4] = 'data05=' + value;
messageResult [5] = 'data06=' + value;
messageResult [6] = 'data07=' + value;
messageResult [7] = 'data08=' + value;
messageResult [8] = 'data09=' + value;
messageResult [9] = 'data10=' + value;
}
function data01 (value, ts) { messageResult [0] = 'data01=' + value; }
function data02 (value, ts) { messageResult [1] = 'data02=' + value; }
function data03 (value, ts) { messageResult [2] = 'data03=' + value; }
function data04 (value, ts) { messageResult [3] = 'data04=' + value; }
function data05 (value, ts) { messageResult [4] = 'data05=' + value; }
function data06 (value, ts) { messageResult [5] = 'data06=' + value; }
function data07 (value, ts) { messageResult [6] = 'data07=' + value; }
function data08 (value, ts) { messageResult [7] = 'data08=' + value; }
function data09 (value, ts) { messageResult [8] = 'data09=' + value; }
function data10 (value, ts) { messageResult [9] = 'data10=' + value; }
]]>
</
ProtoDeclare>
<!-- ============================================================ -->
<
ProtoDeclare name='
TransmitterPdu'>
<
ProtoInterface>
<!-- set whichGeometry to -1 for no geometry, 0 for text trace, 1 for default geometry -->
<
field name='
whichGeometry'
type='
SFInt32'
value='
0'
accessType='
inputOutput'/>
<
field name='
bboxCenter'
type='
SFVec3f'
value='
0 0 0'
accessType='
initializeOnly'
appinfo='
Bounding box center: position offset from origin of local coordinate system.'/>
<
field name='
bboxSize'
type='
SFVec3f'
value='
-1 -1 -1'
accessType='
initializeOnly'
appinfo='
Bounding box size: automatically calculated, can be specified as an optimization or constraint.'/>
<!-- Initialization fields -->
<
field name='
readInterval'
type='
SFTime'
value='
0.1'
accessType='
initializeOnly'/>
<
field name='
writeInterval'
type='
SFTime'
value='
1.0'
accessType='
initializeOnly'/>
<
field name='
siteID'
type='
SFInt32'
value='
14'
accessType='
initializeOnly'/>
<
field name='
applicationID'
type='
SFInt32'
value='
17'
accessType='
initializeOnly'/>
<
field name='
entityID'
type='
SFInt32'
value='
9'
accessType='
initializeOnly'/>
<
field name='
address'
type='
SFString'
value='
224.2.181.145'
accessType='
initializeOnly'/>
<
field name='
port'
type='
SFInt32'
value='
62040'
accessType='
initializeOnly'/>
<
field name='
multicastRelayHost'
type='
SFString'
value='
devo.cs.nps.navy.mil'
accessType='
initializeOnly'/>
<
field name='
multicastRelayPort'
type='
SFInt32'
value='
8010'
accessType='
initializeOnly'/>
<
field name='
networkMode'
type='
SFString'
value='
standAlone'
accessType='
inputOutput'
appinfo='
networkMode: standAlone (ignore network but still respond to local events) networkReader (listen to network as ghost entity) networkWriter (output to network as master entity at writeInterval)'/>
<
field name='
isStandAlone'
type='
SFBool'
accessType='
outputOnly'
appinfo='
Whether networkMode standAlone (ignore network but still respond to local events) is true/false'/>
<
field name='
isMaster'
type='
SFBool'
accessType='
outputOnly'
appinfo='
Whether networkMode 'networkWriter' (output to network as master entity at writeInterval) is true/false'/>
<
field name='
isRemote'
type='
SFBool'
accessType='
outputOnly'
appinfo='
Whether networkMode 'networkReader' (listen to network as ghost entity) is true/false'/>
<
field name='
rtpHeaderExpected'
type='
SFBool'
value='
false'
accessType='
initializeOnly'/>
<
field name='
isRtpHeaderHeard'
type='
SFBool'
accessType='
outputOnly'
appinfo='
whether RTP header was found prepended to DIS packet'/>
<
field name='
trace'
type='
SFBool'
value='
false'
accessType='
initializeOnly'/>
<!-- Generic events -->
<
field name='
active'
type='
SFBool'
accessType='
outputOnly'/>
<
field name='
timestamp'
type='
SFTime'
accessType='
outputOnly'/>
<!-- RadioCommunicationsFamily events -->
<
field name='
radioID'
type='
SFInt32'
accessType='
outputOnly'/>
<!-- TransmitterPdu fields -->
<
field name='
antennaLocation'
type='
SFVec3f'
accessType='
outputOnly'/>
<
field name='
antennaPatternLength'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
antennaPatternType'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
cryptoKeyID'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
cryptoSytem'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
frequency'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
inputSource'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
lengthOfModulationParameters'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
modulationTypeDetail'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
modulationTypeMajor'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
modulationTypeSpreadSpectrum'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
modulationTypeSystem'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
power'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
radioEntityTypeCategory'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
radioEntityTypeCountry'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
radioEntityTypeDomain'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
radioEntityTypeKind'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
radioEntityTypeNomenclature'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
radioEntityTypeNomenclatureVersion'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
relativeAntennaLocation'
type='
SFVec3f'
accessType='
outputOnly'/>
<
field name='
transmitFrequencyBandwidth'
type='
SFInt32'
accessType='
outputOnly'/>
<
field name='
transmitState'
type='
SFInt32'
accessType='
outputOnly'/>
</
ProtoInterface>
<
ProtoBody>
<!-- First node inside a PrototypeDeclaration is the node type of the ProtoInstance -->
<
Switch DEF='
TransmitterPduGeometrySwitch'
whichChoice='
-1'>
<
IS>
</
IS>
<!-- whichChoice -1 is no rendering, choice 0 is text trace, choice 1 is default geometry -->
<
Group>
<![CDATA[
ecmascript:
function initialize ()
{
value='awaiting PDU';
messageResult [0] = 'active=' + value;
messageResult [1] = 'timestamp=' + value;
messageResult [2] = 'isRtpHeaderHeard=' + value;
messageResult [3] = 'radioID=' + value;
messageResult [4] = 'antennaLocation=' + value;
messageResult [5] = 'antennaPatternLength=' + value;
messageResult [6] = 'antennaPatternType=' + value;
messageResult [7] = 'cryptoKeyID=' + value;
messageResult [8] = 'cryptoSytem=' + value;
messageResult [9] = 'frequency=' + value;
}
function active (value, ts) { messageResult [0] = 'active=' + value; }
function timestamp (value, ts) { messageResult [1] = 'timestamp=' + value; }
function isRtpHeaderHeard (value, ts) { messageResult [2] = 'isRtpHeaderHeard=' + value; }
function radioID (value, ts) { messageResult [3] = 'radioID=' + value; }
function antennaLocation (value, ts) { messageResult [4] = 'antennaLocation=' + value; }
function antennaPatternLength (value, ts) { messageResult [5] = 'antennaPatternLength=' + value; }
function antennaPatternType (value, ts) { messageResult [6] = 'antennaPatternType=' + value; }
function cryptoKeyID (value, ts) { messageResult [7] = 'cryptoKeyID=' + value; }
function cryptoSytem (value, ts) { messageResult [8] = 'cryptoSytem=' + value; }
function frequency (value, ts) { messageResult [9] = 'frequency=' + value; }
]]>
<![CDATA[
ecmascript:
function initialize ()
{
messageResult [0] = 'inputSource=' + value;
messageResult [1] = 'lengthOfModulationParameters=' + value;
messageResult [2] = 'modulationTypeDetail=' + value;
messageResult [3] = 'modulationTypeMajor=' + value;
messageResult [4] = 'modulationTypeSpreadSpectrum=' + value;
messageResult [5] = 'modulationTypeSystem=' + value;
messageResult [6] = 'power=' + value;
messageResult [7] = 'radioEntityTypeCategory=' + value;
messageResult [8] = 'radioEntityTypeCountry=' + value;
messageResult [9] = 'radioEntityTypeDomain=' + value;
}
function inputSource (value, ts) { messageResult [0] = 'inputSource=' + value; }
function lengthOfModulationParameters (value, ts) { messageResult [1] = 'lengthOfModulationParameters=' + value; }
function modulationTypeDetail (value, ts) { messageResult [2] = 'modulationTypeDetail=' + value; }
function modulationTypeMajor (value, ts) { messageResult [3] = 'modulationTypeMajor=' + value; }
function modulationTypeSpreadSpectrum (value, ts) { messageResult [4] = 'modulationTypeSpreadSpectrum=' + value; }
function modulationTypeSystem (value, ts) { messageResult [5] = 'modulationTypeSystem=' + value; }
function power (value, ts) { messageResult [6] = 'power=' + value; }
function radioEntityTypeCategory (value, ts) { messageResult [7] = 'radioEntityTypeCategory=' + value; }
function radioEntityTypeCountry (value, ts) { messageResult [8] = 'radioEntityTypeCountry=' + value; }
function radioEntityTypeDomain (value, ts) { messageResult [9] = 'radioEntityTypeDomain=' + value; }
]]>
<![CDATA[
ecmascript:
function initialize ()
{
messageResult [0] = 'radioEntityTypeKind=' + value;
messageResult [1] = 'radioEntityTypeNomenclature=' + value;
messageResult [2] = 'radioEntityTypeNomenclatureVersion=' + value;
messageResult [3] = 'relativeAntennaLocation=' + value;
messageResult [4] = 'transmitFrequencyBandwidth=' + value;
messageResult [5] = 'transmitState=' + value;
}
function radioEntityTypeKind (value, ts) { messageResult [0] = 'radioEntityTypeKind=' + value; }
function radioEntityTypeNomenclature (value, ts) { messageResult [1] = 'radioEntityTypeNomenclature=' + value; }
function radioEntityTypeNomenclatureVersion (value, ts) { messageResult [2] = 'radioEntityTypeNomenclatureVersion=' + value; }
function relativeAntennaLocation (value, ts) { messageResult [3] = 'relativeAntennaLocation=' + value; }
function transmitFrequencyBandwidth (value, ts) { messageResult [4] = 'transmitFrequencyBandwidth=' + value; }
function transmitState (value, ts) { messageResult [5] = 'transmitState=' + value; }
]]>
</
ProtoDeclare>
<!-- ============================================================ -->
<!-- Default content -->
<
NavigationInfo type='
"EXAMINE" "ANY"'
transitionComplete=''
transitionTime='
1.0'
transitionType='
"ANIMATE"'/>
<
Group>
<
Transform translation='
-15 15 0'>
<
ProtoInstance name='
ReceiverPdu'
containerField='
children'/>
</
Transform>
<
Transform translation='
-15 -15 0'>
<ReceiverPdu applicationID='1' timestamp='' address='localhost' enabled='true' port='0' entityID='0' siteID='0' networkMode='standAlone' receivedPower='0.0' containerField='children'/>
</
Transform>
<
Transform translation='
0 15 0'>
<
ProtoInstance name='
SignalPdu'
containerField='
children'/>
</
Transform>
<
Transform translation='
0 -15 0'>
<SignalPdu applicationID='1' timestamp='' address='localhost' enabled='true' port='0' entityID='0' siteID='0' networkMode='standAlone' containerField='children'/>
</
Transform>
<
Transform translation='
15 15 0'>
</
Transform>
<
Transform translation='
15 -15 0'>
<TransmitterPdu enabled='true' timestamp='' transmitFrequencyBandwidth='0.0' entityID='0' containerField='children' networkMode='standAlone' port='0' applicationID='1' address='localhost' relativeAntennaLocation='0 0 0' siteID='0'/>
</
Transform>
</
Group>
</
Scene>
</