Licentie

Aspose.3D FOSS for .NET (Aspose.3D) is open‑source software die is uitgebracht onder de MIT License. U kunt het gebruiken in commerciële producten, open‑sourceprojecten, interne tools en onderzoek zonder beperkingen. Er is geen licentiesleutel, API‑sleutel, gemeten token of registratie vereist.

Belangrijkste punten van de MIT-licentie

  • Gratis voor elk gebruik: commercieel, open-source, intern, academisch en persoonlijk.
  • Geen gebruikslimieten: er zijn geen oproepquota, bestandsgroottebeperkingen of watermerkbeperkingen.
  • Geen API‑sleutel vereist: installeer het pakket via NuGet en begin het meteen te gebruiken.
  • Geen registratie: geen account, geen inloggen, geen online activering.
  • Toeschrijving: behoud de copyrightvermelding en de MIT License‑tekst in uw distributie (zie hieronder).

MIT-licentietekst

De volledige licentietekst die met het pakket wordt meegeleverd, luidt:

MIT License

Copyright (c) Aspose Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

De licentie bekijken in uw geïnstalleerde pakket

Het LICENSE‑bestand is opgenomen in het NuGet‑pakket. U kunt het vinden na installatie door de inhoud van het pakket te inspecteren:

# View license via .NET CLI
dotnet nuget locals all --list

Of inspecteer het pakket direct:

# Download and extract the .nupkg to inspect its contents
nuget locals global-packages -list

Geen commerciële licentie vereist

In tegenstelling tot het commerciële Aspose.3D‑product gebruikt deze FOSS‑editie de License of Metered API‑klassen niet. Deze klassen bestaan in de codebase, maar werpen NotImplementedException — ze zijn niet functioneel in de open‑source build. U hoeft License.SetLicense() niet aan te roepen of een metered key te configureren.

// This is NOT required or meaningful in the FOSS edition:
// var license = new License();
// license.SetLicense("Aspose.3D.lic"); // throws NotImplementedException

// Simply install the package and use it directly:
using Aspose.ThreeD;
var scene = new Scene();
scene.Open("model.obj");

Herdistributie en bundeling

Als u het pakket distribueert als onderdeel van uw eigen applicatie of bibliotheek:

  1. Neem de originele MIT‑licentieverklaring op (het LICENSE‑bestand uit het NuGet‑pakket is voldoende).
  2. Het is niet nodig om uw applicatie open‑source te maken. De MIT‑licentie is permissief, geen copyleft.
  3. U mag de broncode wijzigen en gewijzigde versies distribueren onder dezelfde MIT‑licentie.

Aanvullende bronnen

 Nederlands