Савицких Антон#269
Open
Xineev wants to merge 2 commits into
Open
Conversation
ksamnole
reviewed
Nov 28, 2025
Comment on lines
+11
to
+21
| public class CircularCloudLayouter : ICloudLayouter | ||
| { | ||
| private readonly Point center; | ||
| private readonly List<Rectangle> rectangles; | ||
| private double currentAngle; | ||
| private double currentRadius; | ||
|
|
||
| private double angleStep = 0.1; | ||
| private double radiusStep = 0.5; | ||
|
|
||
| public CircularCloudLayouter(Point center) |
There was a problem hiding this comment.
Давай попробуем сделать CircularCloudLayouter как шаблон для генерации облака тегов. Что я имею ввиду, сейчас класс позволяет получить след. прямоугольник и сгенерировать рандомный список прямоугольников.
Прикольно было бы, если бы этот класс позволял получать распределение прямоугольников по кругу с применением разных параметров (конфигов). То есть мы создаем лояутер, передаем ему желаемые параметры (где центр, какие их размеры и т.д.), а дальше можем просить у этого класса:
- Создай шаблон с 50 прямоугольниками
- Засунь в шаблон еще 1 прямоугольник
Сейчас у тебя примерно так, но можно генерировать только рандомные, нельзя задавать параметры
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@ksamnole