-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #168 from AnalyticalGraphicsInc/polygonHoles
Add polygon holes
- Loading branch information
Showing
78 changed files
with
2,691 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
DotNet/CesiumLanguageWriter/Advanced/CesiumCartesian3ListOfListsValuePropertyAdaptor.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System.Collections.Generic; | ||
using JetBrains.Annotations; | ||
|
||
namespace CesiumLanguageWriter.Advanced | ||
{ | ||
/// <summary> | ||
/// Adapts a class that implements <see cref="ICesiumCartesian3ListOfListsValuePropertyWriter"/> to implement | ||
/// <see cref="ICesiumPropertyWriter"/> for a list of lists of <see cref="Cartesian"/> values. | ||
/// </summary> | ||
/// <typeparam name="TFrom">The class that implements <see cref="ICesiumCartesian3ListOfListsValuePropertyWriter"/> to adapt.</typeparam> | ||
[CSToJavaUseWildcardGenerics] | ||
public class CesiumCartesian3ListOfListsValuePropertyAdaptor<TFrom> : CesiumWriterAdaptor<TFrom, IEnumerable<IEnumerable<Cartesian>>> | ||
where TFrom : class, ICesiumCartesian3ListOfListsValuePropertyWriter | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance. | ||
/// </summary> | ||
/// <param name="parent">The instance to wrap.</param> | ||
/// <param name="writeValueCallback">The callback to write a list of lists of <see cref="Cartesian"/> values.</param> | ||
/// <param name="writeDeleteValueCallback">The callback to write an indication that the client should delete existing data.</param> | ||
public CesiumCartesian3ListOfListsValuePropertyAdaptor([NotNull] TFrom parent, | ||
[NotNull] CesiumWriterAdaptorWriteCallback<TFrom, IEnumerable<IEnumerable<Cartesian>>> writeValueCallback, | ||
[NotNull] CesiumWriterAdaptorWriteDeleteCallback<TFrom> writeDeleteValueCallback) | ||
: base(parent, writeValueCallback, writeDeleteValueCallback) | ||
{ | ||
} | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
...CesiumLanguageWriter/Advanced/CesiumCartographicDegreesListOfListsValuePropertyAdaptor.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System.Collections.Generic; | ||
using JetBrains.Annotations; | ||
|
||
namespace CesiumLanguageWriter.Advanced | ||
{ | ||
/// <summary> | ||
/// Adapts a class that implements <see cref="ICesiumCartographicDegreesListOfListsValuePropertyWriter"/> to implement | ||
/// <see cref="ICesiumPropertyWriter"/> for a list of lists of <see cref="Cartographic"/> values. | ||
/// </summary> | ||
/// <typeparam name="TFrom">The class that implements <see cref="ICesiumCartographicDegreesListOfListsValuePropertyWriter"/> to adapt.</typeparam> | ||
[CSToJavaUseWildcardGenerics] | ||
public class CesiumCartographicDegreesListOfListsValuePropertyAdaptor<TFrom> : CesiumWriterAdaptor<TFrom, IEnumerable<IEnumerable<Cartographic>>> | ||
where TFrom : class, ICesiumCartographicDegreesListOfListsValuePropertyWriter | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance. | ||
/// </summary> | ||
/// <param name="parent">The instance to wrap.</param> | ||
/// <param name="writeValueCallback">The callback to write a list of lists of <see cref="Cartographic"/> values.</param> | ||
/// <param name="writeDeleteValueCallback">The callback to write an indication that the client should delete existing data.</param> | ||
public CesiumCartographicDegreesListOfListsValuePropertyAdaptor([NotNull] TFrom parent, | ||
[NotNull] CesiumWriterAdaptorWriteCallback<TFrom, IEnumerable<IEnumerable<Cartographic>>> writeValueCallback, | ||
[NotNull] CesiumWriterAdaptorWriteDeleteCallback<TFrom> writeDeleteValueCallback) | ||
: base(parent, writeValueCallback, writeDeleteValueCallback) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
...CesiumLanguageWriter/Advanced/CesiumCartographicRadiansListOfListsValuePropertyAdaptor.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System.Collections.Generic; | ||
using JetBrains.Annotations; | ||
|
||
namespace CesiumLanguageWriter.Advanced | ||
{ | ||
/// <summary> | ||
/// Adapts a class that implements <see cref="ICesiumCartographicRadiansListOfListsValuePropertyWriter"/> to implement | ||
/// <see cref="ICesiumPropertyWriter"/> for a list of lists of <see cref="Cartographic"/> values. | ||
/// </summary> | ||
/// <typeparam name="TFrom">The class that implements <see cref="ICesiumCartographicRadiansListOfListsValuePropertyWriter"/> to adapt.</typeparam> | ||
[CSToJavaUseWildcardGenerics] | ||
public class CesiumCartographicRadiansListOfListsValuePropertyAdaptor<TFrom> : CesiumWriterAdaptor<TFrom, IEnumerable<IEnumerable<Cartographic>>> | ||
where TFrom : class, ICesiumCartographicRadiansListOfListsValuePropertyWriter | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance. | ||
/// </summary> | ||
/// <param name="parent">The instance to wrap.</param> | ||
/// <param name="writeValueCallback">The callback to write a list of lists of <see cref="Cartographic"/> values.</param> | ||
/// <param name="writeDeleteValueCallback">The callback to write an indication that the client should delete existing data.</param> | ||
public CesiumCartographicRadiansListOfListsValuePropertyAdaptor([NotNull] TFrom parent, | ||
[NotNull] CesiumWriterAdaptorWriteCallback<TFrom, IEnumerable<IEnumerable<Cartographic>>> writeValueCallback, | ||
[NotNull] CesiumWriterAdaptorWriteDeleteCallback<TFrom> writeDeleteValueCallback) | ||
: base(parent, writeValueCallback, writeDeleteValueCallback) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
DotNet/CesiumLanguageWriter/Advanced/CesiumReferenceListOfListsValuePropertyAdaptor.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System.Collections.Generic; | ||
using JetBrains.Annotations; | ||
|
||
namespace CesiumLanguageWriter.Advanced | ||
{ | ||
/// <summary> | ||
/// Adapts a class that implements <see cref="ICesiumReferenceListOfListsValuePropertyWriter"/> to implement | ||
/// <see cref="ICesiumPropertyWriter"/> for a list of lists of <see cref="Reference"/> values. | ||
/// </summary> | ||
/// <typeparam name="TFrom">The class that implements <see cref="ICesiumReferenceListOfListsValuePropertyWriter"/> to adapt.</typeparam> | ||
[CSToJavaUseWildcardGenerics] | ||
public class CesiumReferenceListOfListsValuePropertyAdaptor<TFrom> : CesiumWriterAdaptor<TFrom, IEnumerable<IEnumerable<Reference>>> | ||
where TFrom : class, ICesiumReferenceListOfListsValuePropertyWriter | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance. | ||
/// </summary> | ||
/// <param name="parent">The instance to wrap.</param> | ||
/// <param name="writeValueCallback">The callback to write a list of lists of <see cref="Reference"/> values.</param> | ||
/// <param name="writeDeleteValueCallback">The callback to write an indication that the client should delete existing data.</param> | ||
public CesiumReferenceListOfListsValuePropertyAdaptor([NotNull] TFrom parent, | ||
[NotNull] CesiumWriterAdaptorWriteCallback<TFrom, IEnumerable<IEnumerable<Reference>>> writeValueCallback, | ||
[NotNull] CesiumWriterAdaptorWriteDeleteCallback<TFrom> writeDeleteValueCallback) | ||
: base(parent, writeValueCallback, writeDeleteValueCallback) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.