IntRange.cs
Description du code
IntRange.cs est un fichier du projet PhotoBrol.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/photobrol/.
Projet PhotoBrol :
Editeur d'images en CSharp.
Code source ou contenu du fichier
Code c# (IntRange.cs) (94 lignes)
using System; using System.Collections.Generic; using System.Text; namespace be.gaudry.model.math { /// <summary> /// Represents an integer range with minimum and maximum values /// </summary> public class IntRange { private int min, max; /// <summary> /// Minimum value /// </summary> public int Min { get { return min; } set { min = value; } } /// <summary> /// Maximum value /// </summary> public int Max { get { return max; } set { max = value; } } /// <summary> /// Length of the range (difference between maximum and minimum values) /// </summary> public int Length { get { return max - min; } } /// <summary> /// Initializes a new instance of the <see cref="IntRange"/> class /// </summary> /// /// <param name="min">Minimum value of the range</param> /// <param name="max">Maximum value of the range</param> public IntRange(int min, int max) { this.min = min; this.max = max; } /// <summary> /// Check if the specified value is inside this range /// </summary> /// /// <param name="x">Value to check</param> /// /// <returns><b>True</b> if the specified value is inside this range or /// <b>false</b> otherwise.</returns> /// public bool IsInside(int x) { return ((x >= min) && (x <= max)); } /// <summary> /// Check if the specified range is inside this range /// </summary> /// /// <param name="range">Range to check</param> /// /// <returns><b>True</b> if the specified range is inside this range or /// <b>false</b> otherwise.</returns> /// public bool IsInside(IntRange range) { return ((IsInside(range.min)) && (IsInside(range.max))); } /// <summary> /// Check if the specified range overlaps with this range /// </summary> /// /// <param name="range">Range to check for overlapping</param> /// /// <returns><b>True</b> if the specified range overlaps with this range or /// <b>false</b> otherwise.</returns> /// public bool IsOverlapping(IntRange range) { return ((IsInside(range.min)) || (IsInside(range.max))); } } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1731619227 14/11/2024 22:20:27 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 30/10/2009 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/cs-photobrol-source-rf-model/math/IntRange.cs.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.