Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Tento repozitář je archivovaný. Můžete prohlížet soubory, klonovat, ale nemůžete nahrávat a vytvářet nové úkoly a požadavky na natažení.
|
- using System;
- using System.Collections.Generic;
- using UnityEngine;
-
- namespace coa4u
- {
- public class CalcerVectorCalc : CalcerVector
- {
- public enum Operation
- {
- Add,
- Sub
- }
-
- private Operation operation;
- private CalcerVector first;
- private CalcerVector second;
-
- public CalcerVectorCalc(CalcerVector first, CalcerVector second, Operation operation = Operation.Add)
- {
- this.first = first;
- this.second = second;
- this.operation = operation;
- }
-
- public override Vector3 value
- {
- get
- {
- switch (operation)
- {
- case Operation.Add:
- return first.value + second.value;
- case Operation.Sub:
- return first.value - second.value;
- default:
- throw new Exception("Operation not found.");
- }
- }
- }
- }
- }
|