├── .gitignore ├── Example Files ├── GEO │ ├── Altitude Mode.ghuser │ ├── GetTerrain │ │ ├── Emeishan1.jpg │ │ ├── boulder.jpg │ │ ├── gHowlTerrain.3dm │ │ ├── gHowlTerrain.3dm.rhl │ │ ├── gHowl_getTerrain.gh │ │ ├── him.jpg │ │ └── montblanc.jpg │ ├── ImportData │ │ ├── CPH_data.csv │ │ ├── cph.jpg │ │ ├── cph_file.3dm │ │ └── gHowl_GPS_importData.ghx │ ├── gHowl_GEO_xyz-geo.ghx │ └── gHowl_KML.ghx ├── OSC │ ├── gHowl_OSC_Dispatch │ │ └── gHowl_OSC_dispatch.ghx │ ├── gHowl_OSC_Mouse2D │ │ ├── gHowl_OSC_Mouse2D.ghx │ │ └── gHowl_OSC_Mouse2D.pde │ └── gHowl_OSC_XY │ │ └── gHowl_OSC_XY.ghx ├── SpreadSheet │ ├── Data │ │ └── excelField03.xlsx │ ├── SpreadsheetIn.gh │ └── SpreadsheetOut.gh ├── UDP │ ├── _processing libraries to install │ │ ├── JMyron0025.zip │ │ ├── ReadMe.txt │ │ ├── oscP5.zip │ │ ├── traer_physics_lib_and_src.zip │ │ └── udp.rar │ ├── gHowl_UDP_Send+Receive_agents │ │ ├── Seek_Arrive │ │ │ ├── Boid.pde │ │ │ └── Seek_Arrive.pde │ │ └── gHowl_UDP_send+receive.ghx │ ├── gHowl_UDP_receive_MousePos │ │ ├── Mouse2D_sender │ │ │ └── Mouse2D_sender.pde │ │ └── gHowl_receive_mouse2d.ghx │ ├── gHowl_UDP_send_Value │ │ ├── gHowl_sendUDP.ghx │ │ └── gHowl_udpSend │ │ │ └── gHowl_udpSend.pde │ ├── gHowl_UDP_sound │ │ ├── SineWaveSignal │ │ │ └── SineWaveSignal.pde │ │ └── gHowl_receiveAudio.ghx │ ├── gHowl_UDP_springs │ │ ├── cloth_ed │ │ │ └── cloth_ed.pde │ │ └── ghowl_UDP_receive_springs.ghx │ ├── gHowl_UDP_swarm │ │ ├── Flocking_howl │ │ │ ├── Boid.pde │ │ │ ├── Flock.pde │ │ │ └── Flocking_howl.pde │ │ └── gHowl_UDP_receive_Swarm.ghx │ └── gHowl_UDP_webcam │ │ ├── Thumbs.db │ │ ├── demo.PNG │ │ ├── gHowl_UDP_receive_CAM │ │ └── gHowl_UDP_receive_CAM.pde │ │ └── gHowl_UDP_receive_Cam.ghx ├── VVVV by Random[Arq] │ ├── 00_Test_ Controlando una Webcam desde GH │ │ ├── 00_Test_ Controlando una Webcam desde GH.ghx │ │ ├── 00_Test_ Controlando una Webcam desde GH.v4p │ │ └── 00_Test_ Controlando una Webcam desde GH~.xml │ ├── 01_Test_ Controlando un atractor desde VVVV │ │ ├── 01_Test_ Controlando un atractor desde VVVV.ghx │ │ └── 01_Test_ Controlando un atractor desde VVVV.v4p │ ├── 02_Test_Color pixeles loop para crear una superficie │ │ ├── 02_Test_Color pixeles loop para crear una superficie.ghx │ │ ├── 02_Test_Color pixeles loop para crear una superficie.v4p │ │ └── 02_Test_Color pixeles loop para crear una superficie~.xml │ ├── 03_Test_Superficie Acústica │ │ ├── 03_Test_Superficie Acústica.ghx │ │ ├── 03_Test_Superficie Acústica.v4p │ │ └── 03_Test_Superficie Acústica~.xml │ ├── 03_Test_Superficie Ac�stica │ │ ├── 03_Test_Superficie Ac�stica.ghx │ │ ├── 03_Test_Superficie Ac�stica.v4p │ │ └── 03_Test_Superficie Ac�stica~.xml │ ├── Loops video y musica para los ejemplos │ │ ├── MH_egyptian_pan_L2R.avi │ │ ├── jace everett - bad things (true blood soundtrack).mp3 │ │ └── orangewatermonster_cpk.avi │ └── VVVV Example Credits.txt └── XML │ ├── XmlWriter_Basic.ghx │ ├── XmlWriter_Out.ghx │ ├── XmlWriter_Types.ghx │ ├── gHowl_UpdatePachube.gh │ └── gHowl_pachube.ghx ├── Licenses ├── BESPOKEOSC LICENSE.txt ├── CLOSEDXML LICENSE.txt ├── GHOWL LICENSE.txt └── SHARPKML LICENSE.txt ├── README.md └── gHowl ├── gHowl.csproj.user ├── gHowl.sln ├── gHowl.suo └── gHowl ├── BespokeOSC ├── Assert.cs ├── Library.cs ├── OscBundle.cs ├── OscBundleReceivedEventArgs.cs ├── OscClient.cs ├── OscMessage.cs ├── OscMessageReceivedEventArgs.cs ├── OscPacket.cs ├── OscPacketReceivedEventArgs.cs ├── OscServer.cs ├── TcpDataReceivedEventArgs.cs ├── TcpServer.cs ├── TransmissionType.cs ├── UdpDataReceivedEventArgs.cs ├── UdpServer.cs └── bespoke0sc_license.txt ├── GEO ├── ElevationComponent.cs ├── FormatGeoComponent.cs ├── GeotoXYZComponent.cs └── XYZtoGeoComponent.cs ├── KML ├── KMLExportComponent.cs ├── KMLStyleComponent.cs ├── KMLStyleComponent_OBSOLETE.cs ├── KMLStyleParameter.cs ├── KMLStyleParameter_OBSOLETE.cs ├── KMLStyleType.cs ├── KMLStyleType_OBSOLETE.cs ├── KMLexportComponent_OBSOLETE.cs └── SharpKml │ ├── Base │ ├── Angle.cs │ ├── Color32.cs │ ├── ElementEventArgs.cs │ ├── ElementWalker.cs │ ├── KmlAttributeAttribute.cs │ ├── KmlElementAttribute.cs │ ├── KmlFactory.cs │ ├── KmlFormatter.cs │ ├── KmlNamespaces.cs │ ├── MathHelpers.cs │ ├── Parser.cs │ ├── Serializer.cs │ ├── TypeBrowser.cs │ ├── ValueConverter.cs │ ├── Vector.cs │ ├── XmlComponent.cs │ └── XmlExtractor.cs │ ├── Dom │ ├── Atom │ │ ├── Author.cs │ │ ├── Category.cs │ │ ├── Content.cs │ │ ├── Entry.cs │ │ ├── Feed.cs │ │ └── Link.cs │ ├── Element.cs │ ├── Features │ │ ├── AbstractLatLonBox.cs │ │ ├── Container.cs │ │ ├── Data.cs │ │ ├── Description.cs │ │ ├── Document.cs │ │ ├── ExtendedData.cs │ │ ├── Feature.cs │ │ ├── Folder.cs │ │ ├── LatLonAltBox.cs │ │ ├── Lod.cs │ │ ├── NetworkLink.cs │ │ ├── Placemark.cs │ │ ├── Region.cs │ │ ├── Schema.cs │ │ ├── SchemaData.cs │ │ ├── SimpleData.cs │ │ ├── SimpleField.cs │ │ └── Snippet.cs │ ├── Fields │ │ ├── AltitudeMode.cs │ │ ├── ColorMode.cs │ │ ├── CoordinateCollection.cs │ │ ├── DisplayMode.cs │ │ ├── GridOrigin.cs │ │ ├── ItemIconStates.cs │ │ ├── ListItemType.cs │ │ ├── RefreshMode.cs │ │ ├── Shape.cs │ │ ├── StyleState.cs │ │ ├── Unit.cs │ │ ├── VectorType.cs │ │ └── ViewRefreshMode.cs │ ├── GX │ │ ├── AltitudeMode.cs │ │ ├── AnimatedUpdate.cs │ │ ├── Enums.cs │ │ ├── FlyTo.cs │ │ ├── FlyToMode.cs │ │ ├── LatLonQuad.cs │ │ ├── MultipleTrack.cs │ │ ├── Option.cs │ │ ├── PlayMode.cs │ │ ├── Playlist.cs │ │ ├── SimpleArrayData.cs │ │ ├── SimpleArrayField.cs │ │ ├── SoundCue.cs │ │ ├── TimeSpan.cs │ │ ├── Timestamp.cs │ │ ├── Tour.cs │ │ ├── TourControl.cs │ │ ├── TourPrimitive.cs │ │ ├── Track.cs │ │ └── Wait.cs │ ├── Geometries │ │ ├── Alias.cs │ │ ├── Geometry.cs │ │ ├── InnerBoundary.cs │ │ ├── LineString.cs │ │ ├── LinearRing.cs │ │ ├── Location.cs │ │ ├── Model.cs │ │ ├── MultipleGeometry.cs │ │ ├── Orientation.cs │ │ ├── OuterBoundary.cs │ │ ├── Point.cs │ │ ├── Polygon.cs │ │ ├── ResourceMap.cs │ │ └── Scale.cs │ ├── IBoundsInformation.cs │ ├── ICustomElement.cs │ ├── IHtmlContent.cs │ ├── Kml.cs │ ├── KmlObject.cs │ ├── Links │ │ ├── ChangeCollection.cs │ │ ├── CreateCollection.cs │ │ ├── DeleteCollection.cs │ │ ├── Icon.cs │ │ ├── Link.cs │ │ ├── LinkSnippet.cs │ │ ├── LinkType.cs │ │ ├── NetworkLinkControl.cs │ │ └── Update.cs │ ├── Overlays │ │ ├── GroundOverlay.cs │ │ ├── ImagePyramid.cs │ │ ├── LatLonBox.cs │ │ ├── Overlay.cs │ │ ├── OverlayVector.cs │ │ ├── PhotoOverlay.cs │ │ ├── RotationVector.cs │ │ ├── ScreenOverlay.cs │ │ ├── ScreenVector.cs │ │ ├── SizeVector.cs │ │ └── ViewVolume.cs │ ├── Styles │ │ ├── BalloonStyle.cs │ │ ├── BasicLink.cs │ │ ├── ColorStyle.cs │ │ ├── Hotspot.cs │ │ ├── IconStyle.cs │ │ ├── ItemIcon.cs │ │ ├── LabelStyle.cs │ │ ├── LineStyle.cs │ │ ├── ListStyle.cs │ │ ├── Pair.cs │ │ ├── PolygonStyle.cs │ │ ├── Style.cs │ │ ├── StyleMapCollection.cs │ │ ├── StyleSelector.cs │ │ └── SubStyle.cs │ ├── Time │ │ ├── TimePrimitive.cs │ │ ├── TimeSpan.cs │ │ └── Timestamp.cs │ ├── UnknownElement.cs │ ├── Url.cs │ ├── Views │ │ ├── AbstractView.cs │ │ ├── Camera.cs │ │ └── LookAt.cs │ └── Xal │ │ ├── AddressDetails.cs │ │ ├── AdministrativeArea.cs │ │ ├── Country.cs │ │ ├── Locality.cs │ │ ├── PostalCode.cs │ │ ├── SubAdministrativeArea.cs │ │ └── Thoroughfare.cs │ └── Engine │ ├── BoundingBox.cs │ ├── ElementExtensions.cs │ ├── EntityMapper.cs │ ├── FeatureExtensions.cs │ ├── FileHandler.cs │ ├── GeometryExtensions.cs │ ├── KmlFile.cs │ ├── KmzFile.cs │ ├── LinkResolver.cs │ ├── StyleResolver.cs │ ├── UpdateExtensions.cs │ └── UriExtensions.cs ├── OSC ├── OSCChannelComponent.cs └── OSCDispatchComponent.cs ├── Pachube ├── PachubeReadComponent.cs └── PachubeUpdateComponent.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── Resources ├── KMLAttributes.png ├── OSCChannel.png ├── OSCDispatch.png ├── adapter.png ├── gHowl_elev.png ├── geIcon.png ├── howl-right.png ├── howl.png ├── midi.png ├── pachubeIn.png ├── pachubeOut.png ├── spreadSheetIn.png ├── spreadSheetOut.png ├── spreadsheetCheck.png ├── udp-receive.png ├── udp-send.png ├── worldEdit.png ├── worldIcon.png ├── xmlParse.png ├── xmlWrite.png └── xyz.png ├── SafeComponent.cs ├── TestForSafeComponent.cs ├── Udp ├── Action.cs ├── AdapterDiscoverer.cs ├── ClientIpTuple.cs ├── Formatter.cs ├── InternetConnectionComponent.cs ├── ReceivePattern.cs ├── SendPattern.cs ├── UdpHelper.cs ├── UdpReceiverComponent.cs ├── UdpReceiverComponent_OBSOLETE.cs ├── UdpSenderComponent.cs └── UdpSenderComponent_OBSOLETE.cs ├── Xml ├── PathExtension.cs ├── XmlParser.cs └── XmlWriter.cs ├── app.config ├── gHowl.csproj ├── gHowl.csproj.user ├── gHowlData.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/.gitignore -------------------------------------------------------------------------------- /Example Files/GEO/Altitude Mode.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/Altitude Mode.ghuser -------------------------------------------------------------------------------- /Example Files/GEO/GetTerrain/Emeishan1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/GetTerrain/Emeishan1.jpg -------------------------------------------------------------------------------- /Example Files/GEO/GetTerrain/boulder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/GetTerrain/boulder.jpg -------------------------------------------------------------------------------- /Example Files/GEO/GetTerrain/gHowlTerrain.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/GetTerrain/gHowlTerrain.3dm -------------------------------------------------------------------------------- /Example Files/GEO/GetTerrain/gHowlTerrain.3dm.rhl: -------------------------------------------------------------------------------- 1 | Luis E. Fraguada 2 | WISO 3 | Tuesday, August 30, 2011 -------------------------------------------------------------------------------- /Example Files/GEO/GetTerrain/gHowl_getTerrain.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/GetTerrain/gHowl_getTerrain.gh -------------------------------------------------------------------------------- /Example Files/GEO/GetTerrain/him.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/GetTerrain/him.jpg -------------------------------------------------------------------------------- /Example Files/GEO/GetTerrain/montblanc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/GetTerrain/montblanc.jpg -------------------------------------------------------------------------------- /Example Files/GEO/ImportData/CPH_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/ImportData/CPH_data.csv -------------------------------------------------------------------------------- /Example Files/GEO/ImportData/cph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/ImportData/cph.jpg -------------------------------------------------------------------------------- /Example Files/GEO/ImportData/cph_file.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/ImportData/cph_file.3dm -------------------------------------------------------------------------------- /Example Files/GEO/ImportData/gHowl_GPS_importData.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/ImportData/gHowl_GPS_importData.ghx -------------------------------------------------------------------------------- /Example Files/GEO/gHowl_GEO_xyz-geo.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/gHowl_GEO_xyz-geo.ghx -------------------------------------------------------------------------------- /Example Files/GEO/gHowl_KML.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/GEO/gHowl_KML.ghx -------------------------------------------------------------------------------- /Example Files/OSC/gHowl_OSC_Dispatch/gHowl_OSC_dispatch.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/OSC/gHowl_OSC_Dispatch/gHowl_OSC_dispatch.ghx -------------------------------------------------------------------------------- /Example Files/OSC/gHowl_OSC_Mouse2D/gHowl_OSC_Mouse2D.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/OSC/gHowl_OSC_Mouse2D/gHowl_OSC_Mouse2D.ghx -------------------------------------------------------------------------------- /Example Files/OSC/gHowl_OSC_Mouse2D/gHowl_OSC_Mouse2D.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/OSC/gHowl_OSC_Mouse2D/gHowl_OSC_Mouse2D.pde -------------------------------------------------------------------------------- /Example Files/OSC/gHowl_OSC_XY/gHowl_OSC_XY.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/OSC/gHowl_OSC_XY/gHowl_OSC_XY.ghx -------------------------------------------------------------------------------- /Example Files/SpreadSheet/Data/excelField03.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/SpreadSheet/Data/excelField03.xlsx -------------------------------------------------------------------------------- /Example Files/SpreadSheet/SpreadsheetIn.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/SpreadSheet/SpreadsheetIn.gh -------------------------------------------------------------------------------- /Example Files/SpreadSheet/SpreadsheetOut.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/SpreadSheet/SpreadsheetOut.gh -------------------------------------------------------------------------------- /Example Files/UDP/_processing libraries to install/JMyron0025.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/_processing libraries to install/JMyron0025.zip -------------------------------------------------------------------------------- /Example Files/UDP/_processing libraries to install/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/_processing libraries to install/ReadMe.txt -------------------------------------------------------------------------------- /Example Files/UDP/_processing libraries to install/oscP5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/_processing libraries to install/oscP5.zip -------------------------------------------------------------------------------- /Example Files/UDP/_processing libraries to install/traer_physics_lib_and_src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/_processing libraries to install/traer_physics_lib_and_src.zip -------------------------------------------------------------------------------- /Example Files/UDP/_processing libraries to install/udp.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/_processing libraries to install/udp.rar -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_Send+Receive_agents/Seek_Arrive/Boid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_Send+Receive_agents/Seek_Arrive/Boid.pde -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_Send+Receive_agents/Seek_Arrive/Seek_Arrive.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_Send+Receive_agents/Seek_Arrive/Seek_Arrive.pde -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_Send+Receive_agents/gHowl_UDP_send+receive.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_Send+Receive_agents/gHowl_UDP_send+receive.ghx -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_receive_MousePos/Mouse2D_sender/Mouse2D_sender.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_receive_MousePos/Mouse2D_sender/Mouse2D_sender.pde -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_receive_MousePos/gHowl_receive_mouse2d.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_receive_MousePos/gHowl_receive_mouse2d.ghx -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_send_Value/gHowl_sendUDP.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_send_Value/gHowl_sendUDP.ghx -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_send_Value/gHowl_udpSend/gHowl_udpSend.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_send_Value/gHowl_udpSend/gHowl_udpSend.pde -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_sound/SineWaveSignal/SineWaveSignal.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_sound/SineWaveSignal/SineWaveSignal.pde -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_sound/gHowl_receiveAudio.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_sound/gHowl_receiveAudio.ghx -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_springs/cloth_ed/cloth_ed.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_springs/cloth_ed/cloth_ed.pde -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_springs/ghowl_UDP_receive_springs.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_springs/ghowl_UDP_receive_springs.ghx -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_swarm/Flocking_howl/Boid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_swarm/Flocking_howl/Boid.pde -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_swarm/Flocking_howl/Flock.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_swarm/Flocking_howl/Flock.pde -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_swarm/Flocking_howl/Flocking_howl.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_swarm/Flocking_howl/Flocking_howl.pde -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_swarm/gHowl_UDP_receive_Swarm.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_swarm/gHowl_UDP_receive_Swarm.ghx -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_webcam/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_webcam/Thumbs.db -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_webcam/demo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_webcam/demo.PNG -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_webcam/gHowl_UDP_receive_CAM/gHowl_UDP_receive_CAM.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_webcam/gHowl_UDP_receive_CAM/gHowl_UDP_receive_CAM.pde -------------------------------------------------------------------------------- /Example Files/UDP/gHowl_UDP_webcam/gHowl_UDP_receive_Cam.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/UDP/gHowl_UDP_webcam/gHowl_UDP_receive_Cam.ghx -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/00_Test_ Controlando una Webcam desde GH/00_Test_ Controlando una Webcam desde GH.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/00_Test_ Controlando una Webcam desde GH/00_Test_ Controlando una Webcam desde GH.ghx -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/00_Test_ Controlando una Webcam desde GH/00_Test_ Controlando una Webcam desde GH.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/00_Test_ Controlando una Webcam desde GH/00_Test_ Controlando una Webcam desde GH.v4p -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/00_Test_ Controlando una Webcam desde GH/00_Test_ Controlando una Webcam desde GH~.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/00_Test_ Controlando una Webcam desde GH/00_Test_ Controlando una Webcam desde GH~.xml -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/01_Test_ Controlando un atractor desde VVVV/01_Test_ Controlando un atractor desde VVVV.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/01_Test_ Controlando un atractor desde VVVV/01_Test_ Controlando un atractor desde VVVV.ghx -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/01_Test_ Controlando un atractor desde VVVV/01_Test_ Controlando un atractor desde VVVV.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/01_Test_ Controlando un atractor desde VVVV/01_Test_ Controlando un atractor desde VVVV.v4p -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/02_Test_Color pixeles loop para crear una superficie/02_Test_Color pixeles loop para crear una superficie.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/02_Test_Color pixeles loop para crear una superficie/02_Test_Color pixeles loop para crear una superficie.ghx -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/02_Test_Color pixeles loop para crear una superficie/02_Test_Color pixeles loop para crear una superficie.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/02_Test_Color pixeles loop para crear una superficie/02_Test_Color pixeles loop para crear una superficie.v4p -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/02_Test_Color pixeles loop para crear una superficie/02_Test_Color pixeles loop para crear una superficie~.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/02_Test_Color pixeles loop para crear una superficie/02_Test_Color pixeles loop para crear una superficie~.xml -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/03_Test_Superficie Acústica/03_Test_Superficie Acústica.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/03_Test_Superficie Acústica/03_Test_Superficie Acústica.ghx -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/03_Test_Superficie Acústica/03_Test_Superficie Acústica.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/03_Test_Superficie Acústica/03_Test_Superficie Acústica.v4p -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/03_Test_Superficie Acústica/03_Test_Superficie Acústica~.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/03_Test_Superficie Acústica/03_Test_Superficie Acústica~.xml -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/03_Test_Superficie Ac�stica/03_Test_Superficie Ac�stica.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/03_Test_Superficie Ac�stica/03_Test_Superficie Ac�stica.ghx -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/03_Test_Superficie Ac�stica/03_Test_Superficie Ac�stica.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/03_Test_Superficie Ac�stica/03_Test_Superficie Ac�stica.v4p -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/03_Test_Superficie Ac�stica/03_Test_Superficie Ac�stica~.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/03_Test_Superficie Ac�stica/03_Test_Superficie Ac�stica~.xml -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/Loops video y musica para los ejemplos/MH_egyptian_pan_L2R.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/Loops video y musica para los ejemplos/MH_egyptian_pan_L2R.avi -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/Loops video y musica para los ejemplos/jace everett - bad things (true blood soundtrack).mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/Loops video y musica para los ejemplos/jace everett - bad things (true blood soundtrack).mp3 -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/Loops video y musica para los ejemplos/orangewatermonster_cpk.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/Loops video y musica para los ejemplos/orangewatermonster_cpk.avi -------------------------------------------------------------------------------- /Example Files/VVVV by Random[Arq]/VVVV Example Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/VVVV by Random[Arq]/VVVV Example Credits.txt -------------------------------------------------------------------------------- /Example Files/XML/XmlWriter_Basic.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/XML/XmlWriter_Basic.ghx -------------------------------------------------------------------------------- /Example Files/XML/XmlWriter_Out.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/XML/XmlWriter_Out.ghx -------------------------------------------------------------------------------- /Example Files/XML/XmlWriter_Types.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/XML/XmlWriter_Types.ghx -------------------------------------------------------------------------------- /Example Files/XML/gHowl_UpdatePachube.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/XML/gHowl_UpdatePachube.gh -------------------------------------------------------------------------------- /Example Files/XML/gHowl_pachube.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Example Files/XML/gHowl_pachube.ghx -------------------------------------------------------------------------------- /Licenses/BESPOKEOSC LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Licenses/BESPOKEOSC LICENSE.txt -------------------------------------------------------------------------------- /Licenses/CLOSEDXML LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Licenses/CLOSEDXML LICENSE.txt -------------------------------------------------------------------------------- /Licenses/GHOWL LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Licenses/GHOWL LICENSE.txt -------------------------------------------------------------------------------- /Licenses/SHARPKML LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/Licenses/SHARPKML LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/README.md -------------------------------------------------------------------------------- /gHowl/gHowl.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl.csproj.user -------------------------------------------------------------------------------- /gHowl/gHowl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl.sln -------------------------------------------------------------------------------- /gHowl/gHowl.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl.suo -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/Assert.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/Library.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/OscBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/OscBundle.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/OscBundleReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/OscBundleReceivedEventArgs.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/OscClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/OscClient.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/OscMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/OscMessage.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/OscMessageReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/OscMessageReceivedEventArgs.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/OscPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/OscPacket.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/OscPacketReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/OscPacketReceivedEventArgs.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/OscServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/OscServer.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/TcpDataReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/TcpDataReceivedEventArgs.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/TcpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/TcpServer.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/TransmissionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/TransmissionType.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/UdpDataReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/UdpDataReceivedEventArgs.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/UdpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/UdpServer.cs -------------------------------------------------------------------------------- /gHowl/gHowl/BespokeOSC/bespoke0sc_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/BespokeOSC/bespoke0sc_license.txt -------------------------------------------------------------------------------- /gHowl/gHowl/GEO/ElevationComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/GEO/ElevationComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/GEO/FormatGeoComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/GEO/FormatGeoComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/GEO/GeotoXYZComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/GEO/GeotoXYZComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/GEO/XYZtoGeoComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/GEO/XYZtoGeoComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/KMLExportComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/KMLExportComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/KMLStyleComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/KMLStyleComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/KMLStyleComponent_OBSOLETE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/KMLStyleComponent_OBSOLETE.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/KMLStyleParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/KMLStyleParameter.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/KMLStyleParameter_OBSOLETE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/KMLStyleParameter_OBSOLETE.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/KMLStyleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/KMLStyleType.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/KMLStyleType_OBSOLETE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/KMLStyleType_OBSOLETE.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/KMLexportComponent_OBSOLETE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/KMLexportComponent_OBSOLETE.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/Angle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/Angle.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/Color32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/Color32.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/ElementEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/ElementEventArgs.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/ElementWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/ElementWalker.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/KmlAttributeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/KmlAttributeAttribute.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/KmlElementAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/KmlElementAttribute.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/KmlFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/KmlFactory.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/KmlFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/KmlFormatter.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/KmlNamespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/KmlNamespaces.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/MathHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/MathHelpers.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/Parser.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/Serializer.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/TypeBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/TypeBrowser.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/ValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/ValueConverter.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/Vector.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/XmlComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/XmlComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Base/XmlExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Base/XmlExtractor.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Atom/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Atom/Author.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Atom/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Atom/Category.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Atom/Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Atom/Content.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Atom/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Atom/Entry.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Atom/Feed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Atom/Feed.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Atom/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Atom/Link.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Element.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/AbstractLatLonBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/AbstractLatLonBox.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/Container.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/Data.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/Description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/Description.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/Document.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/ExtendedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/ExtendedData.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/Feature.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/Folder.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/LatLonAltBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/LatLonAltBox.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/Lod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/Lod.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/NetworkLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/NetworkLink.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/Placemark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/Placemark.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/Region.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/Schema.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/SchemaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/SchemaData.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/SimpleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/SimpleData.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/SimpleField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/SimpleField.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Features/Snippet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Features/Snippet.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/AltitudeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/AltitudeMode.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/ColorMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/ColorMode.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/CoordinateCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/CoordinateCollection.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/DisplayMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/DisplayMode.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/GridOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/GridOrigin.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/ItemIconStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/ItemIconStates.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/ListItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/ListItemType.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/RefreshMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/RefreshMode.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/Shape.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/StyleState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/StyleState.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/Unit.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/VectorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/VectorType.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Fields/ViewRefreshMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Fields/ViewRefreshMode.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/AltitudeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/AltitudeMode.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/AnimatedUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/AnimatedUpdate.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/Enums.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/FlyTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/FlyTo.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/FlyToMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/FlyToMode.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/LatLonQuad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/LatLonQuad.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/MultipleTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/MultipleTrack.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/Option.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/PlayMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/PlayMode.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/Playlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/Playlist.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/SimpleArrayData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/SimpleArrayData.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/SimpleArrayField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/SimpleArrayField.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/SoundCue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/SoundCue.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/TimeSpan.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/Timestamp.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/Tour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/Tour.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/TourControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/TourControl.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/TourPrimitive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/TourPrimitive.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/Track.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/GX/Wait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/GX/Wait.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/Alias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/Alias.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/Geometry.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/InnerBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/InnerBoundary.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/LineString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/LineString.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/LinearRing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/LinearRing.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/Location.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/Model.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/MultipleGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/MultipleGeometry.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/Orientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/Orientation.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/OuterBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/OuterBoundary.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/Point.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/Polygon.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/ResourceMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/ResourceMap.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Geometries/Scale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Geometries/Scale.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/IBoundsInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/IBoundsInformation.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/ICustomElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/ICustomElement.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/IHtmlContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/IHtmlContent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Kml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Kml.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/KmlObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/KmlObject.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Links/ChangeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Links/ChangeCollection.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Links/CreateCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Links/CreateCollection.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Links/DeleteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Links/DeleteCollection.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Links/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Links/Icon.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Links/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Links/Link.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Links/LinkSnippet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Links/LinkSnippet.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Links/LinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Links/LinkType.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Links/NetworkLinkControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Links/NetworkLinkControl.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Links/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Links/Update.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Overlays/GroundOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Overlays/GroundOverlay.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Overlays/ImagePyramid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Overlays/ImagePyramid.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Overlays/LatLonBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Overlays/LatLonBox.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Overlays/Overlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Overlays/Overlay.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Overlays/OverlayVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Overlays/OverlayVector.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Overlays/PhotoOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Overlays/PhotoOverlay.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Overlays/RotationVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Overlays/RotationVector.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Overlays/ScreenOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Overlays/ScreenOverlay.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Overlays/ScreenVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Overlays/ScreenVector.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Overlays/SizeVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Overlays/SizeVector.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Overlays/ViewVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Overlays/ViewVolume.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/BalloonStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/BalloonStyle.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/BasicLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/BasicLink.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/ColorStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/ColorStyle.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/Hotspot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/Hotspot.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/IconStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/IconStyle.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/ItemIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/ItemIcon.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/LabelStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/LabelStyle.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/LineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/LineStyle.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/ListStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/ListStyle.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/Pair.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/PolygonStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/PolygonStyle.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/Style.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/StyleMapCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/StyleMapCollection.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/StyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/StyleSelector.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Styles/SubStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Styles/SubStyle.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Time/TimePrimitive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Time/TimePrimitive.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Time/TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Time/TimeSpan.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Time/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Time/Timestamp.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/UnknownElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/UnknownElement.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Url.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Url.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Views/AbstractView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Views/AbstractView.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Views/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Views/Camera.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Views/LookAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Views/LookAt.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Xal/AddressDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Xal/AddressDetails.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Xal/AdministrativeArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Xal/AdministrativeArea.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Xal/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Xal/Country.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Xal/Locality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Xal/Locality.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Xal/PostalCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Xal/PostalCode.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Xal/SubAdministrativeArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Xal/SubAdministrativeArea.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Dom/Xal/Thoroughfare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Dom/Xal/Thoroughfare.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/BoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/BoundingBox.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/ElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/ElementExtensions.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/EntityMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/EntityMapper.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/FeatureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/FeatureExtensions.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/FileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/FileHandler.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/GeometryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/GeometryExtensions.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/KmlFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/KmlFile.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/KmzFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/KmzFile.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/LinkResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/LinkResolver.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/StyleResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/StyleResolver.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/UpdateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/UpdateExtensions.cs -------------------------------------------------------------------------------- /gHowl/gHowl/KML/SharpKml/Engine/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/KML/SharpKml/Engine/UriExtensions.cs -------------------------------------------------------------------------------- /gHowl/gHowl/OSC/OSCChannelComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/OSC/OSCChannelComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/OSC/OSCDispatchComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/OSC/OSCDispatchComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Pachube/PachubeReadComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Pachube/PachubeReadComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Pachube/PachubeUpdateComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Pachube/PachubeUpdateComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Properties/Resources.resx -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/KMLAttributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/KMLAttributes.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/OSCChannel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/OSCChannel.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/OSCDispatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/OSCDispatch.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/adapter.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/gHowl_elev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/gHowl_elev.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/geIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/geIcon.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/howl-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/howl-right.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/howl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/howl.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/midi.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/pachubeIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/pachubeIn.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/pachubeOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/pachubeOut.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/spreadSheetIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/spreadSheetIn.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/spreadSheetOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/spreadSheetOut.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/spreadsheetCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/spreadsheetCheck.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/udp-receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/udp-receive.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/udp-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/udp-send.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/worldEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/worldEdit.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/worldIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/worldIcon.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/xmlParse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/xmlParse.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/xmlWrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/xmlWrite.png -------------------------------------------------------------------------------- /gHowl/gHowl/Resources/xyz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Resources/xyz.png -------------------------------------------------------------------------------- /gHowl/gHowl/SafeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/SafeComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/TestForSafeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/TestForSafeComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/Action.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/AdapterDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/AdapterDiscoverer.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/ClientIpTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/ClientIpTuple.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/Formatter.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/InternetConnectionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/InternetConnectionComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/ReceivePattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/ReceivePattern.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/SendPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/SendPattern.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/UdpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/UdpHelper.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/UdpReceiverComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/UdpReceiverComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/UdpReceiverComponent_OBSOLETE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/UdpReceiverComponent_OBSOLETE.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/UdpSenderComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/UdpSenderComponent.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Udp/UdpSenderComponent_OBSOLETE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Udp/UdpSenderComponent_OBSOLETE.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Xml/PathExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Xml/PathExtension.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Xml/XmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Xml/XmlParser.cs -------------------------------------------------------------------------------- /gHowl/gHowl/Xml/XmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/Xml/XmlWriter.cs -------------------------------------------------------------------------------- /gHowl/gHowl/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/app.config -------------------------------------------------------------------------------- /gHowl/gHowl/gHowl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/gHowl.csproj -------------------------------------------------------------------------------- /gHowl/gHowl/gHowl.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/gHowl.csproj.user -------------------------------------------------------------------------------- /gHowl/gHowl/gHowlData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/gHowlData.cs -------------------------------------------------------------------------------- /gHowl/gHowl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gHowl/gHowlComponents/HEAD/gHowl/gHowl/packages.config --------------------------------------------------------------------------------