PIbd-23 Firsov Kirill LabWork 01 #4
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "Laba1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Имеются конфликты пула
Зачтено с понижением балла(ов)
@ -0,0 +1,29 @@
using System;
Название проекта не соответствует указаному в задании
@ -0,0 +54,4 @@
_pictureWidth = width;
_pictureHeight = height;
if (_tractorWidth > _pictureHeight || _tractorHeight > _pictureHeight)
Сначала выполняются проверки и только потом, если они пройдены успешно, запоминаются данные
@ -0,0 +56,4 @@
_pictureHeight = height;
if (_tractorWidth > _pictureHeight || _tractorHeight > _pictureHeight)
{
_pictureWidth = 2 * _tractorWidth;
Здесь нет корректировок, только возврат false, если в границы не вписываемся
@ -0,0 +74,4 @@
_startPosX = x;
_startPosY = y;
if ((x + _tractorWidth > _pictureWidth) || (y + _pictureHeight > _pictureHeight))
Не учтены все условия, при которых объект может выйти за границы
@ -0,0 +77,4 @@
if ((x + _tractorWidth > _pictureWidth) || (y + _pictureHeight > _pictureHeight))
{
Random random = new();
x = random.Next(0, _pictureWidth);
Ну изменили x и что дальше? _startPosX хранит старое значение то
@ -0,0 +78,4 @@
{
Random random = new();
x = random.Next(0, _pictureWidth);
x = random.Next(0, _pictureHeight);
Дважды меняем x
@ -0,0 +6,4 @@
namespace RPP_FirstLaba_Tractor
{
public class EntityTractor
Не заданы свойства-признаки
Pull request closed