diff --git a/docs/Class_Camera.html b/docs/Class_Camera.html index f437bae..e3eccf5 100644 --- a/docs/Class_Camera.html +++ b/docs/Class_Camera.html @@ -36,25 +36,25 @@ diff --git a/docs/Class_EdgeSettings.html b/docs/Class_EdgeSettings.html index cf186f0..0888a9a 100644 --- a/docs/Class_EdgeSettings.html +++ b/docs/Class_EdgeSettings.html @@ -36,25 +36,25 @@ diff --git a/docs/Class_EmbeddedViewer.html b/docs/Class_EmbeddedViewer.html index b59e877..de8bfa8 100644 --- a/docs/Class_EmbeddedViewer.html +++ b/docs/Class_EmbeddedViewer.html @@ -36,25 +36,25 @@ diff --git a/docs/Class_EnvironmentSettings.html b/docs/Class_EnvironmentSettings.html index 09fc962..363d70d 100644 --- a/docs/Class_EnvironmentSettings.html +++ b/docs/Class_EnvironmentSettings.html @@ -36,25 +36,25 @@ diff --git a/docs/Class_InputFile.html b/docs/Class_InputFile.html index c5f858d..9ca394c 100644 --- a/docs/Class_InputFile.html +++ b/docs/Class_InputFile.html @@ -36,25 +36,25 @@ diff --git a/docs/Class_RGBAColor.html b/docs/Class_RGBAColor.html index 88f41f2..38e692a 100644 --- a/docs/Class_RGBAColor.html +++ b/docs/Class_RGBAColor.html @@ -36,25 +36,25 @@ diff --git a/docs/Class_RGBColor.html b/docs/Class_RGBColor.html index 0f06247..14bbad2 100644 --- a/docs/Class_RGBColor.html +++ b/docs/Class_RGBColor.html @@ -36,25 +36,25 @@ diff --git a/docs/Enum_CameraMode.html b/docs/Enum_CameraMode.html index 20196c8..d15a603 100644 --- a/docs/Enum_CameraMode.html +++ b/docs/Enum_CameraMode.html @@ -36,25 +36,25 @@ diff --git a/docs/Enum_FileSource.html b/docs/Enum_FileSource.html index c871add..b101317 100644 --- a/docs/Enum_FileSource.html +++ b/docs/Enum_FileSource.html @@ -36,25 +36,25 @@ diff --git a/docs/Function_Init3DViewerElementFromFileList.html b/docs/Function_Init3DViewerElementFromFileList.html index bbaac36..c30ae5c 100644 --- a/docs/Function_Init3DViewerElementFromFileList.html +++ b/docs/Function_Init3DViewerElementFromFileList.html @@ -36,25 +36,25 @@ diff --git a/docs/Function_Init3DViewerElementFromUrlList.html b/docs/Function_Init3DViewerElementFromUrlList.html index 62d67b0..5915efd 100644 --- a/docs/Function_Init3DViewerElementFromUrlList.html +++ b/docs/Function_Init3DViewerElementFromUrlList.html @@ -36,25 +36,25 @@ diff --git a/docs/Function_Init3DViewerElements.html b/docs/Function_Init3DViewerElements.html index 7ea405c..31a8489 100644 --- a/docs/Function_Init3DViewerElements.html +++ b/docs/Function_Init3DViewerElements.html @@ -36,25 +36,25 @@ diff --git a/docs/Function_SetExternalLibLocation.html b/docs/Function_SetExternalLibLocation.html index d697022..b3d6143 100644 --- a/docs/Function_SetExternalLibLocation.html +++ b/docs/Function_SetExternalLibLocation.html @@ -36,25 +36,25 @@ diff --git a/docs/Page_ContributionGuidelines.html b/docs/Page_ContributionGuidelines.html index a946277..6e8ea70 100644 --- a/docs/Page_ContributionGuidelines.html +++ b/docs/Page_ContributionGuidelines.html @@ -36,25 +36,25 @@ diff --git a/docs/Page_EnvironmentSetup.html b/docs/Page_EnvironmentSetup.html index bafbb1c..5f00aba 100644 --- a/docs/Page_EnvironmentSetup.html +++ b/docs/Page_EnvironmentSetup.html @@ -36,25 +36,25 @@ diff --git a/docs/Page_Installation.html b/docs/Page_Installation.html index 5b2496a..2ee3a5b 100644 --- a/docs/Page_Installation.html +++ b/docs/Page_Installation.html @@ -36,25 +36,25 @@ diff --git a/docs/Page_MigrationGuide.html b/docs/Page_MigrationGuide.html index 5159238..0ecfe97 100644 --- a/docs/Page_MigrationGuide.html +++ b/docs/Page_MigrationGuide.html @@ -36,25 +36,25 @@ diff --git a/docs/Page_Usage.html b/docs/Page_Usage.html index f6544bf..fa0a1db 100644 --- a/docs/Page_Usage.html +++ b/docs/Page_Usage.html @@ -36,25 +36,25 @@ diff --git a/docs/index.html b/docs/index.html index a7aed55..0be5f4b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -36,25 +36,25 @@ diff --git a/tools/lib/doc_generator.py b/tools/lib/doc_generator.py index fde3e7c..5974dc7 100644 --- a/tools/lib/doc_generator.py +++ b/tools/lib/doc_generator.py @@ -59,9 +59,9 @@ def GenerateNavigationHtml (documentation, eol): generator = HtmlGenerator (eol) for pageGroup in documentation.pageGroups: AddNavigationSection (generator, pageGroup.name, pageGroup.pages) - AddNavigationSection (generator, 'Classes', documentation.classes) - AddNavigationSection (generator, 'Functions', documentation.functions) - AddNavigationSection (generator, 'Enums', documentation.enums) + AddNavigationSection (generator, 'Classes', sorted (documentation.classes, key = lambda x : x.name)) + AddNavigationSection (generator, 'Functions', sorted (documentation.functions, key = lambda x : x.name)) + AddNavigationSection (generator, 'Enums', sorted (documentation.enums, key = lambda x : x.name)) return generator.GetHtml () def GenerateDocumentation (documentation, sourceFolder, targetFolder):